stats[transform, deletemissing]
remove missing data
Calling Sequence
Parameters
Description
Examples
stats[transform, deletemissing](data)
transform[deletemissing](data)
data
-
statistical list
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.
with⁡stats:
data1≔1,missing,2,missing,x,missing
transformdeletemissing⁡data1
1,2,x
data2≔Weight⁡3,10,missing,4,Weight⁡11..12,3,15..17,Weight⁡missing,3
transformdeletemissing⁡data2
Weight⁡3,10,4,Weight⁡11..12,3,15..17
See Also
Statistics
stats(deprecated)[data]
stats(deprecated)[transform]
Download Help Document