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
stats[transform, divideby] - divide statistical data by a number or a descriptive statistic
Calling Sequence
stats[transform, divideby[divisor]](data)
transform[divideby[divisor]](data)
Parameters
divisor
-
numerical value, or descriptive statistic function
data
statistical list
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function divideby of the subpackage stats[transform, ...] divides the data by the given divisor
Missing items remain unchanged.
The requested division is applied at each of the boundary points of classes. To ensure correct subsequent results, the requested divisor must preserve the order of the boundary points, and so must be positive.
If the divisor is not numeric, a call to stats[describe, divisor](data) is made to compute it.
It is usually more meaningful to compare two distributions when they are brought to a common scale. For example, to compare the dispersion of the data, it is convenient to divide the data by some appropriate measure of the dispersion (see describe[standarddeviation] for more information on this topic. Another common divisor is to use some "typical" value of the data, in other words, to use a central measure of the data. Refer to describe[mean] for more information on this topic.
The function transform[apply] is more general than transform[divideby]. A common procedure is to remove the mean from the data and then divide by the standard deviation. The function transform[standardscore] performs this transformation directly.
Examples
Compare with another distribution
The mean is the same. The range is the same. But the scaled data is quite different.
See Also
describe(deprecated)[mean], describe(deprecated)[standarddeviation], Statistics, transform(deprecated)[apply], transform(deprecated)[multiapply], transform(deprecated)[standardscore], transform(deprecated)[subtractfrom]
Download Help Document