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
Statistics[Bootstrap] - compute bootstrap statistics
Calling Sequence
Bootstrap(stat, inp, options)
Parameters
stat
-
stat, procedure; statistic to bootstrap
inp
rtable, algebraic; input data or distribution
options
(optional) equation(s) of the form option=value where option is one of samplesize, replications, output, weights, ignore or statopts; specify options for the Bootstrap function
Description
The Bootstrap function approximates the value of a standard statistic over a data sample or random variable by resampling from the sample or random variable and averaging the results.
The first parameter stat is the name of a standard quantity applied to either a data set or random variable (e.g. Mean, Median, Variance).
The second parameter inp can be a data sample or a random variable to be used as input. If a data sample is specified, the algorithm attempts to draw, with replacement, from the data sample to create a new data sample with a similar weight.
Options
The options argument can contain one or more of the options shown below.
samplesize = 'deduce' or posint -- If this option is set to 'deduce' (default) and a data sample has been provided as the first argument to this function, then the sample size will be the size of the data sample. If set to 'deduce' and a random variable is specified, the procedure will default to 1000 samples.
replications = posint -- By default this parameter is set to 1000. This parameter specifies the number of data sets that should be generated (or replicated) - each of size specified by samplesize.
output = 'value', 'standarderror', 'array' or list('value', 'standarderror') -- This parameter specifies the desired output from the bootstrap function. If 'value' is specified (default), the function simply returns the value approximated by Bootstrap. If 'array' is specified then an Array of size replications will be returned containing the statistic calculated on each generated data sample. If 'standarderror' is specified then the function returns the standard error from the calculation. Otherwise, a list of these parameters may be specified which returns a list populated accordingly.
ignore = truefalse -- This option is used to specify how to handle non-numeric data. If ignore is set to true all non-numeric items in data will be ignored. This option is only valid if inp is a data set.
weights = rtable -- Vector of weights (one-dimensional rtable). If weights are given, the Bootstrap function will weight the sample inp accordingly. Note that the weights provided must have type,realcons and the results are floating-point, even if the problem is specified with exact values. The data array and the weights array must have the same number of elements. This option is only valid if inp is a data set.
statopts = list -- This parameter specifies an ordered list of parameters for the statistical quantity called. By default this is simply an empty list.
Examples
Bootstrap the mean on a data sample.
Bootstrap the mean on a random variable.
See Also
Statistics, Statistics[Computation]
Download Help Document