Is Missing
Is Missing using Row
Summary: Runs data table operations by opening a dataset, setting row indices, and checking for missing values in the 'name' column.
Code:
dt = Open("data_table.jmp");
dt = Open("data_table.jmp");
Row() = 0;
Row() = 12;
x = Is Missing( dt:name );
Code Explanation:
- Open data table;
- Reopen data_table dataset
- Set row index to 0.
- Set row index to 12.
- Check if name is missing in row 12.