Sample - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Student[Statistics]

  

Sample

  

generate random sample

 

Calling Sequence

Parameters

Description

Computation

Examples

References

Compatibility

Calling Sequence

Sample(X, n, numeric_option, output_option)

Parameters

X

-

algebraic; random variable

n

-

positive integer; sample size

numeric_option

-

(optional) equation of the form numeric=value where value is true or false

output_option

-

(optional) equation of the form output=x where x is value, plot, or both

Description

• 

The Sample command generates a random sample drawn from the distribution given by X.

• 

The first parameter, X, can be a random variable, or an algebraic expression involving random variables (see Student[Statistics][RandomVariable]).

• 

The second parameter, n, is the sample size. The function will return a newly created Vector of length n, filled with the sample values.

• 

If the option output is not included or is specified to be output=value, then the function will return the generated sample as a Vector. If output=plot is specified, then the function will return a density plot of the input random variable together with a histogram of the sample. If output=both is specified, then both the value and the plot will be returned.

Computation

• 

If X is a continuous random variable, or an expression that contains a floating point value, or an expression that contains a continuous random variable, then the sample is returned as floating point values. Otherwise, the sample is returned as exact values.

• 

By default, the data are generated according to the rule above. To always generate data numerically, specify the numeric or numeric=true option.

Examples

withStudentStatistics:

Straightforward sampling of a random variable.

XNormalRandomVariable0,1

X_R

(1)

ASampleX,10

A

(2)

You can check how well the generated data fit the input model by specifying the output=plot option and comparing the their graphs.

SampleX,105,output=plot

You can also sample an expression involving two random variables.

YNormalRandomVariable0,1

Y_R0

(3)

SampleexpXY,10

(4)

Consider a discrete random variable.

BPoissonRandomVariable3

B_R1

(5)

SampleBπ,10

(6)

To always generate floating point value data, specify the numeric or numeric=true option.

SampleBπ,10,numeric

(7)

Use the output=both option to obtain both the value and plot of the generated data.

dataset,graphSampleB,100,output=both

dataset,graph?,PLOT...

(8)

dataset

(9)

graph

You can also compute the statistics of the generated data.

CSampleX2,104

MeanC

0.994862958212511

(10)

MedianC

0.455147477689335

(11)

SkewnessC

2.81421618454522

(12)

KurtosisC

14.8537269935385

(13)

VarianceC

1.96550597257815

(14)

StandardDeviationC

1.40196503971324

(15)

QuantileC,0.6

0.713125222514264

(16)

References

  

Stuart, Alan, and Ord, Keith. Kendall's Advanced Theory of Statistics. 6th ed. London: Edward Arnold, 1998. Vol. 1: Distribution Theory.

  

Walker, Alastair J. New Fast Method for Generating Discrete Random Numbers with Arbitrary Frequency Distributions, Electronic Letters, 10, 127-128.

  

Walker, Alastair J. An Efficient Method for Generating Discrete Random Variables with General Distributions, ACM Trans. Math. Software, 3, 253-256.

Compatibility

• 

The Student[Statistics][Sample] command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

Statistics[Sample]

Student

Student[Statistics]

Student[Statistics][RandomVariable]