- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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] = list(df[col])
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
Use << Show Window
Names Default To Here(1);
dt = open("$SAMPLE_DATA/Big Class.jmp");
dt << show window(0);
Again found from scripting index
and JMP help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
If I read the documentation correctly, it doesn't seem to be currently possible with jmp.DataTable so you might have to go through run_jsl.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
Thanks!
How to use JSL implementation to make open JMP tables invisible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
With JSL you just use
Open(path, invisible)
and this information can be found from scripting index
and from JMP Help https://www.jmp.com/support/help/en/18.1/#page/jmp/file-functions.shtml?os=win&source=application#ww...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
This I know, python generated JMP table is not required to save, this time can not use JSL to achieve it is not visible?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
What are you looking for?
- Make JMP generated table invisible?
- Make Python integration generated invisible?
- Set a table invisible?
- Open a table invisible?
- ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
Like this JMP table generated by python code, can't JSL make it invisible without saving it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
Use << Show Window
Names Default To Here(1);
dt = open("$SAMPLE_DATA/Big Class.jmp");
dt << show window(0);
Again found from scripting index
and JMP help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
A optional visibility parameter to jmp.DataTable( ) is coming to JMP 19. Get out the EA and test it out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: python code: Make the generated JMP table invisible?
Thanks Experts!