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

Online Help

All Products    Maple    MapleSim


Statistics

  

ProfileLogLikelihood

  

plot a profile of the log likelihood function

 

Calling Sequence

Parameters

Description

Options

Examples

Calling Sequence

ProfileLogLikelihood(R, V, options, plotoptions)

ProfileLogLikelihood['interactive'](R, V)

Parameters

R

-

algebraic; a random variable or distribution

V

-

data sample

options

-

(optional) equation(s) of the form option=value where option is one of bounds, deviations, ignore, params, range, weights; specify options for the ProfileLogLikelihood command

plotoptions

-

options to be passed to the plots[display] command

Description

• 

The ProfileLogLikelihood command plots a profile of the LogLikelihood command.

• 

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 is a data sample (given as e.g. a Vector) used to calculate the log likelihood function.

• 

If the ['interactive'] option is used, then a dialog box appears that allows for customized creation of the plot.

Options

  

The options argument can contain one or more of the options shown below. All unrecognized options will be passed to the plots[display] command. See plot/options for details.

• 

bounds=none or range

  

If this option specifies a range, then ProfileLogLikelihood attempts to calculate the maximum likelihood estimate within the given bounds. Otherwise the command attempts to calculate the maximum likelihood estimate over the entire real line (default).  Note that this option only applies if a range is not specified with the 'range' option.

• 

deviations=realcons

  

This option specifies the radius of the region plotted around the maximum likelihood estimate, given option range=deduce.  This option is 3 by default.

• 

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 R are ignored.

• 

params=list(name=realcons)

  

This option specifies any additional indeterminates in the likelihood expression that should be evaluated prior to plotting.  The likelihood profile requires that there is only one indeterminate in the expression, so this provides a mechanism to specify the values of missing parameters.

• 

range=deduce or range

  

If this option is set to deduce (default), ProfileLogLikelihood attempts to calculate the maximum likelihood estimate and plot the log likelihood function in an interval around it. Otherwise, this parameter can specify a range to plot the likelihood profile on.

• 

weights=rtable

  

Vector of weights (one-dimensional rtable). If weights are given, the log likelihood function is scaled so each data point has the 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:

Plot the profile of the log likelihood function of a Pareto distribution.

SSamplePareto5.,7.,100:

RRandomVariablePareto5.,c:

ProfileLogLikelihoodR,S

ProfileLogLikelihoodR,S,axis2=gridlines=linestyle=dot,color=Crimson

See Also

Statistics

Statistics/Computation

Statistics[Estimation][LogLikelihood]