transform(deprecated)/split - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : transform(deprecated)/split

stats[transform, split]

split one data list into several

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

stats[transform, split[n]](data)

transform[split[n]](data)

Parameters

n

-

positive integer

data

-

statistical list

Description

• 

Important: The stats package has been deprecated. Use the superseding package Statistics instead.

• 

The function split of the subpackage stats[transform, ...] splits the data list, data, into n data lists of same weight.

• 

Missing items are taken into account.

• 

This function is useful in constructing histograms where each bar has the same area.

Examples

Important: The stats package has been deprecated. Use the superseding package Statistics instead.

withstats:

data1,2,3,4,5

data1,2,3,4,5

(1)

transformsplit3data

1,Weight2,23,Weight2,13,3,Weight4,13,Weight4,23,5

(2)

The following is an extended example where a list of numbers will be randomly generated, used in a histogram which will be compared to the theoretical distribution. Generate 300 numbers (reduce this number for faster results), randomly generated with a normal distribution

Numbersrandomnormald300:

Sort the data.

Numbers_sortedtransformstatsortNumbers:

Number of lists is set to 5 (increase it for a better resolution, but ensure there are enough points in the list).

N_list5:

Split into lists of equal weight.

Split_liststransformsplitN_listNumbers_sorted:

Obtain classes of equal weight from those lists. Make the total weight equal to 1.

ClassesmapxWeightdescriberangex,1N_list,Split_lists:

Construct histogram:

HiststatplotshistogramClasses:

Create a theoretical curve

Theorplotstatevalfpdf,normald,describerangeNumbers:

Display both the theoretical curve and the histogram.

plotsdisplayHist,Theor

See Also

Statistics

statplots(deprecated)[histogram]

stats(deprecated)[data]

stats(deprecated)[transform]