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,skewness] - Moment Coefficient of Skewness
Calling Sequence
stats[describe, skewness](data)
stats[describe, skewness[Nconstraints]](data)
describe[skewness](data)
describe[skewness[Nconstraints]](data)
Parameters
data
-
statistical list
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 skewness of the subpackage stats[describe, ...] computes the moment coefficient of skewness of the given data. It is defined to be the third moment about the mean, divided by the third power of the standard deviation.
The skewness measures the degree to which a distribution is asymmetric. For a symmetric distribution, the skewness is zero. If a distribution has a longer tail to the left than to the right, it is said to have negative skewness. If the reverse is true, then the distribution has a positive skewness.
Classes are assumed to be represented by the class mark, for example 10..12 has the value 11. Missing data are ignored.
The computation of the skewness involves that of the standard deviation. Since, the definition of standard deviation varies according to whether it is computed for the whole population, or only for a sample, then so does the skewness vary. The parameter Nconstraint controls this behavior. For more information on this subject, refer to describe[standarddeviation].
There are other possibilities for the definition of the skewness, as can be seen in various books on statistics.
The command with(stats[describe],skewness) allows the use of the abbreviated form of this command.
Examples
This data is symmetric:
This data has negative skewness: (the items are more to the right)
This data has positive skewness: (the items are more to the left)
See Also
describe(deprecated)[kurtosis], describe(deprecated)[moment], describe(deprecated)[standarddeviation], describe(deprecated)[variance], Statistics, Statistics[Skewness], transform(deprecated)[classmark]
Download Help Document