- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Subset Specific Column to New Table
There is feature to subset "Row" to new Table. Is there a quick way in JMP to subset specific column to new table?
For example, i only want to subset 3 columns that i select to another table.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Subset Specific Column to New Table
Tables=>Subset
allows you to specify to subset only selected columns. And if you are using JSL, the same option is available
dt = current data table();
dtNew = dt << subset( selected columns(1), selected rows(0));
The above JSL will select only the columns that are selected but will copy all rows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Subset Specific Column to New Table
Tables=>Subset
allows you to specify to subset only selected columns. And if you are using JSL, the same option is available
dt = current data table();
dtNew = dt << subset( selected columns(1), selected rows(0));
The above JSL will select only the columns that are selected but will copy all rows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Subset Specific Column to New Table
Hi Nelson,
I been using JMP for so long, i never know that i can use Tables - Subset to subset columns. Thanks for the great tips and also JSL option. Very helpful.