dropNA-func
This function return a dataset by removing missing value or empty value rows in vd
dataset dropNA(dataset vd [, int text])
vd
text
Returns a dataset by removing missing value or empty value rows in vd
newbook col(a) = data(1, 10); col(a)[5] = "--"; col(b)=dropNA(col(a));