Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Descriptive Statistics, Data Summary and Related Commands
The Statistics package provides various commands for computing descriptive statistics and related quantities. These include location, dispersion and shape statistics, moments and cumulants. The package also provides several data summary and tabulation commands. In addition, most of these functions can handle weighted data and data with missing values. Here is the list of available commands
Available Commands
Location Statistics
Decile
deciles
GeometricMean
geometric mean
HarmonicMean
harmonic mean
MakeProcedure
generate a procedure for calculating statistical quantities
Mean
arithmetic mean
Median
median
Mode
mode
Percentile
percentiles
QuadraticMean
quadratic mean
Quantile
quantiles
Quartile
quartiles
TrimmedMean
trimmed mean
Variation
coefficient of variation
WinsorizedMean
winsorized mean
Dispersion Statistics
AbsoluteDeviation
compute the average absolute deviation
InterquartileRange
interquartile range
MeanDeviation
average absolute deviation from the mean
MedianDeviation
compute the median absolute deviation
Range
range
StandardDeviation
standard deviation
Variance
variance
Shape Statistics
Kurtosis
kurtosis
Skewness
skewness
Moments and Cumulants
CentralMoment
central moments
Cumulant
cumulants
Moment
moments
StandardizedMoment
standardized moments
Data Summary
DataSummary
seven summary statistics
FivePointSummary
five-point summary
FrequencyTable
frequency table
Related Commands
AutoCorrelation
autocorrelations
Correlation
correlation/correlation matrix
Covariance
covariance/covariance matrix
CrossCorrelation
cross-correlations
ExpectedValue
compute expected values
OrderStatistic
order statistics
StandardError
standard error of the sampling distribution
Floating Point Environment
All computations involving data 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.
Data with Missing Values
Missing values are represented by undefined or Float(undefined). Note that Float(undefined) propagates freely through most floating-point operations, which means that most statistics for a data set with missing values will yield undefined. The option ignore - which is available for most commands listed above - controls how missing data is handled. If ignore=true all missing items in a data set will be ignored. The default value of this option is false. For more details on a particular command, see the corresponding help page.
Adding Weights to Data
Weights can be added to data by supplying an optional argument weights=value, where value is a vector of numeric constants. The number of elements in the weights array must be equal to the number of elements in the original data set. By default all elements in a data set are assigned weight . For more details on a particular command, see the corresponding help page.
Examples
Generate random sample drawn from the non-central Beta distribution.
Compute the five point summary of the data sample.
Compute the mean, standard deviation, skewness, kurtosis, etc.
Estimate the mode.
Compute the second moment about .3.
Compute mean, trimmed mean and winsorized mean.
Compute frequency table for A.
See Also
Statistics, Statistics[Computation], Statistics[Distributions]
Download Help Document