Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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