python code: Make the generated JMP table invisible?
Thanks!import pandas as pd
import jmp
data = { 'A': [1, 2, 3, 4], 'B': [5.1, 6.2, 7.3, 8.4], 'C': ['x', 'y', 'z', 'w']}
df = pd.DataFrame(data)
dt = jmp.DataTable("MyInvisibleTable", df.shape[0])
for col in df.columns:
if df[col].dtype in ['int64', 'float64']:
col_type = jmp.DataType.Numeric
else:
col_type = jmp.DataType.Character
dt.new_column(col, col_type)
dt[col
...