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