dt = jmp.DataTable(name='string', rows=n)
Description
dt.add_rows(rows=n, after=m)
Description
dt.name = 'new name'
Description
dt.new_column(name='string', dtype='string', mtype='string', dlen='string', where=n)
Description
Arguments
name
Specifies the name of the new column.
dtype
Specifies the data type of the new column using the jmp.DataType enumeration values.
mtype
Specifies the modeling type of the new column using the jmp.ModelingType enumeration values.
dlen
Specifies the data length of columns with the Numeric data type.
where
Specifies the placement of the new column.
dt.save(path='file_path')
Description
Saves the data table to the specified file path or the current directory of the script if no path is specified.
dt.close(save=True|False)
Description
Closes the data table. The save argument is optional, and data tables are saved before closing if the argument is omitted. Setting the save argument to False closes the data table without saving.