New-macro
Creates an empty dataset named dataset having numPoints data points. To verify the existence of the dataset dataset, use the list s command in the Script window. To create a worksheet from the dataset dataset, use the edit dataset command in the Script window.
Def New { create %1 -n %2; set %1 -e %2; };
The following script creates the dataset MyData1_B with 400 data points. It then creates the worksheet MyData1 containing the column B.
New MyData1_B 400; // create dataset Edit MyData1_B; // create worksheet