Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Statistics[Information] - statistical information
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 data 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
Calculate the Information of each term of the normal distribution.
Sample a random variable with Normal distribution.
Calculate the information relative to this sample.
Insert missing data into the array and recompute.
Consider a weighted structure.
See Also
Statistics, Statistics[Computation]
Download Help Document