Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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