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, multiapply] - apply a function across multiple data lists
Calling Sequence
stats[transform, multiapply[fctn]](listdata)
transform[multiapply[fctn]](listdata)
Parameters
fctn
-
function
listdata
list of statistical lists
Description
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function multiapply of the subpackage stats[transform, ...] applies the requested function across the lists of statistical lists in the given listdata.
The function supplied must be designed to handle missing data, weighted data and class data correctly, if such data is present in listdata.
Each sublist of listdata must contain the same number of elements. In other words, map(nops, listdata) should return a list of identical numbers.
This function is an extension to the zip() function.
An example of the use of this function is the following. Given a list of marks for each classroom tests, and a formula that computes the final mark of each student, the function transform[multiapply] allows the computations of the final mark of all students, all at once.
Examples
These are computed as follows.
See Also
Statistics, stats(deprecated)[data], stats(deprecated)[transform], transform(deprecated)[apply], zip
Download Help Document