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, 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