3.5.6.2 dropNA

Description

This function return a dataset by removing missing value or empty value rows in vd

Syntax

dataset dropNA(dataset vd [, int text])

Parameter

vd

a dataset, or a column in Origin worksheet

text

If text = 0, text (neither masked nor empty) is not dropped; if text = 1, text is dropped

Return

Returns a dataset by removing missing value or empty value rows in vd

Examples

newbook
col(a) = data(1, 10);
col(a)[5] = "--";
col(b)=dropNA(col(a));