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

Online Help

All Products    Maple    MapleSim


Statistics

  

Information

  

statistical information

 

Calling Sequence

Parameters

Description

Options

Examples

Calling Sequence

Information(R, V, options)

Parameters

R

-

algebraic; a random variable or distribution

V

-

rtable, name; data sample

options

-

(optional) equation(s) of the form option=value where option is one of samplesize, param, ignore or weights; specify options for the Information function

Description

• 

The Information function computes the Information function of a random variable or a distribution.  The Information function is defined as the second derivative of the log likelihood function with respect to all parameters or to one particular parameter.

• 

The first parameter R can be a distribution (see Statistics[Distribution]), a random variable, or an algebraic expression involving random variables (see Statistics[RandomVariable]).

• 

The second parameter V can be an Array of data sample or a symbol representing an Array of data samples (in which case the option samplesize must be specified).

Options

  

The options argument can contain one or more of the options shown below.

• 

samplesize=deduce or posint -- If this option is set to 'deduce' (default) the information function attempts to automatically determine the number of data samples provided in V.  This parameter must be specified if the number of samples in V is not immediately detectable.

• 

param=all or name -- If this option is set to 'all' (default) the information of all parameters for this distribution is calculated and the result is returned as a Vector.  Otherwise, this option specifies the parameter which should be used to calculate the information.

• 

ignore=truefalse -- This option is used to specify how to handle non-numeric data. If ignore is set to true all non-numeric items in V will be ignored.

• 

weights=rtable -- Vector of weights (one-dimensional rtable). If weights are given, the Information function will scale each data point to have given weight. Note that the weights provided must have type,realcons and the results are floating-point, even if the problem is specified with exact values. Both the data array and the weights array must have the same number of elements.

Examples

withStatistics:

Calculate the Information of each term of the normal distribution.

InformationNormalμ,σ,A,samplesize=4,param=σ

4σ23A12σ412μ2σ43A22σ43A32σ43A42σ4+6A1μσ4+6A2μσ4+6A3μσ4+6A4μσ4

(1)

Sample a random variable with Normal distribution.

NRandomVariableNormal5,1:

SSampleN,4:

Calculate the information relative to this sample.

InformationNormalμ,σ,S,param=μ

4σ2

(2)

Insert missing data into the array and recompute.

S4undefined:

InformationNormalμ,2,S

Floatundefined

(3)

InformationNormalμ,2,S,ignore=true

34

(4)

Consider a weighted structure.

SSampleN,4:

W2,2,0,0:

InformationNormalμ,1,S,weights=W,param=μ

−4

(5)

See Also

Statistics

Statistics[Computation]