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
stats[describe,moment] - Moments of a Statistical List
Calling Sequence
stats[describe, moment[which, origin, Nconstraint]](data)
describe[moment[which, origin, Nconstraint]](data)
Parameters
data
-
statistical list
which
integer that specifies the required moment
origin
(optional, default=0) the quantity about which the moment is computed.
Nconstraint
(optional, default=0) number of constraints, 1 for sample, 0 for full population
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function moment of the subpackage stats[describe, ...] computes the various moments of the given data about any origin.
The r-th moment about an origin R is computed as follows: M_R:=(1/(N-Nconstraints))*sum( (X-R)^r ), where N is the total weight of the data.
The value of origin can be either a number, or the various descriptive statistic functions that can be specified via stats[describe, descriptive statistic function].
The function moment is closely related to the function sumdata.
Classes are assumed to be represented by the class mark, for example 10..12 has the value 11. Missing data are ignored.
The definition of the moment varies according to whether it is computed for the whole population, or only for a sample. The parameter Nconstraint provides for this. Refer to describe[standarddeviation] for more information about this.
The command with(stats[describe],moment) allows the use of the abbreviated form of this command.
Examples
Third moment about 0:
Fourth moment about 1:
Fifth moment about the mean, for a sample population:
See Also
describe(deprecated)[kurtosis], describe(deprecated)[standarddeviation], describe(deprecated)[sumdata], describe(deprecated)[variance], Statistics, Statistics[Moment], stats(deprecated)[data], transform(deprecated)[classmark]
Download Help Document