MakeProcedure - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Statistics

  

MakeProcedure

  

generate a procedure for calculating statistical quantities

 

Calling Sequence

Parameters

Description

Computation

Examples

Calling Sequence

MakeProcedure(stat, inp, params)

Parameters

stat

-

name; statistical quantity to calculate

inp

-

algebraic, rtable, 'randomvariable', 'sample'; primary input to procedure

params

-

(optional) a sequence representing the arguments of the generated procedure

options

-

(optional) equation(s) of the form option=value passed to the statistical quantity being used

Description

• 

The MakeProcedure function generates a procedure that can be used to calculate various statistical quantities.

• 

The first parameter is the name of a statistical quantity (for available statistical quantities see Statistics[DescriptiveStatistics]).

• 

The second parameter is the primary input to this procedure.  If this parameter is an algebraic expression involving random variables or a distribution then the procedure will calculate the statistical quantity on the given expression.  Similarly, if the parameter is an rtable, the statistical quantity will be calculated on the provided dataset.  If 'randomvariable' is specified, the procedure will accept as its first parameter an expression involving random variables (type algebraic). Finally, if 'sample' is specified, the procedure will accept a dataset (type rtable) as its first parameter.

• 

The third parameter specifies the arguments for the generated procedure.  If this parameter is specified, all arguments of the selected statistic must be specified as they would in a procedure definition.  Alternatively, parameters may be replaced with values that are instead used when performing the statistical operation.

Computation

• 

For efficiency, all computations are performed in floating-point; therefore, all data provided must have type realcons and all returned solutions are floating-point, even if the problem is specified with exact values.

• 

For more information about computation in the Statistics package, see the Statistics[Computation] help page.

Examples

withStatistics:

Generate a procedure for calculating the moment on an array.

AArray1.,2.,3.:

MMakeProcedureMoment,A:

M4

32.6666666666667

(1)

Generate a procedure for calculating the 4th moment of any sample.

MMakeProcedureMoment,sample,4:

MA

32.6666666666667

(2)

Generate a procedure for calculating the moment of a Normal random variable.

MMakeProcedureMoment,Normal0,1,n::posint:

M4

3.

(3)

Generate a procedure for calculating the 4th moment of any random variable.

MMakeProcedureMoment,randomvariable,4:

MRandomVariableNormal0,1

3.

(4)

See Also

Statistics

Statistics[Computation]

Statistics[DescriptiveStatistics]

Statistics[RandomVariables]