Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.
Hi, A quick workaround would be to save the Tabulate output as a table (Main Platform Menu: Red Triangle Top Left > Make Into a Table) and change the column header there. However, if you need to work with the output itself, you will need to look deep into the Tree Structure of the output to figure out if the Column labels can me edited (from a quick check, it does not seem to be editable but I'll leave other to comment) Best, TS
The work around that I would do, is to replace the missing cells with the value you want to be displayed, thus changing the missing value to a specified value.
for each row(
If(:sex == "", :sex = "my new group"
);