transform(deprecated)/deletemissing - 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)/deletemissing

stats[transform, deletemissing]

remove missing data

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

stats[transform, deletemissing](data)

transform[deletemissing](data)

Parameters

data

-

statistical list

Description

• 

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

• 

The function deletemissing of the subpackage stats[transform, ...] removes the missing data from the given data.

• 

The keyword missing refers to missing data. It is useful in cases where the data is not supplied for some reason (such as a particular student did not write a particular assignment), but the fact needs to be recorded. For analysis purposes, it is often appropriate to disregard missing data (for instance, to analyze the performance of the students who actually wrote an exam). Most, but not all, of the stats package will ignore missing data. Note that it is not always appropriate to remove missing data.

Examples

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

withstats:

data11,missing,2,missing,x,missing

data11,missing,2,missing,x,missing

(1)

transformdeletemissingdata1

1,2,x

(2)

data2Weight3,10,missing,4,Weight11..12,3,15..17,Weightmissing,3

data2Weight3,10,missing,4,Weight11..12,3,15..17,Weightmissing,3

(3)

transformdeletemissingdata2

Weight3,10,4,Weight11..12,3,15..17

(4)

See Also

Statistics

stats(deprecated)[data]

stats(deprecated)[transform]