cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Appending to a Col List Box is not working

    I have tried the script below on both JMP 17.1 and JMP 18.0.  (I'm fairly sure it's me and not a bug).  I am having the user select their table from any of their open tables and then choose a Y column, X column and a Grouping column in the form of Col List Boxes.  The issue is that the script only works for the last table in the Combo Box.  It won't work for any of the first 2 tables shown in my e...

    tbidwell tbidwell
    Discussions |
    May 23, 2024 6:33 AM
    1564 views | 2 replies
  • Compare values

    Hi, here is an example of a list  Here is the final result I would like to achieve: Thanks,

    Jackie_ Jackie_
    Discussions |
    May 22, 2024 8:59 AM
    3843 views | 9 replies
  • Is there a quick way to transform column data type?

    I have a question for help, thanks.
    There is a table with more than 1200 columns, since many data values starting with “i”, there are about 900 columns, so I need to convert the column format from character to numeric, but with a for loop, it's too slow, is there a fast way?  

    lehaofeng lehaofeng
    Discussions |
    May 21, 2024 11:04 PM
    2685 views | 7 replies
  • How to create a new column in a data table from a list of column values using conditional statements?

    I want to check values in two numeric columns within a data table. Now I have these two numeric columns' names in a list. I use a for loop to iterate through the list of these chosen numeric column names, then i want to check against a threshold value (say 100). Then I want to create a new column and put labels accordingly - either label "A" or "B" - depending on the given columns in the data tabl...

    rk2 rk2
    Discussions |
    May 21, 2024 2:11 PM
    1042 views | 1 replies
  • Scheduler Generates Dissociation Error when script is refreshed after timer.

    I'm very new to jmp Scripting and working on making a script that my team can use during processing that will refresh so they can monitor the process as they work without having to interact too much with their computer. I got the refresh working but when the scheduler timer runs out and the script runs again, I am getting an Error message stating:  The source table has changed. The summary table w...

    CriticalSeries2 CriticalSeries2
    Discussions |
    May 21, 2024 1:52 PM
    806 views | 1 replies

Latest Discussions

  • Compare values

    Hi, here is an example of a list  Here is the final result I would like to achieve: Thanks,

    Jackie_ Jackie_
    Discussions |
    May 22, 2024 8:59 AM
    3843 views | 9 replies
  • Is there a quick way to transform column data type?

    I have a question for help, thanks.
    There is a table with more than 1200 columns, since many data values starting with “i”, there are about 900 columns, so I need to convert the column format from character to numeric, but with a for loop, it's too slow, is there a fast way?  

    lehaofeng lehaofeng
    Discussions |
    May 21, 2024 11:04 PM
    2685 views | 7 replies
  • Scheduler Generates Dissociation Error when script is refreshed after timer.

    I'm very new to jmp Scripting and working on making a script that my team can use during processing that will refresh so they can monitor the process as they work without having to interact too much with their computer. I got the refresh working but when the scheduler timer runs out and the script runs again, I am getting an Error message stating:  The source table has changed. The summary table w...

    CriticalSeries2 CriticalSeries2
    Discussions |
    May 21, 2024 1:52 PM
    806 views | 1 replies
  • Can animation of this difficulty be achieved with JSL?

    I saw this Rule30 in the video.https://mathworld.wolfram.com/Rule30.html It must be complicated. Thanks Experts!

    lala lala
    Discussions |
    May 19, 2024 7:37 AM
    2541 views | 7 replies
  • Hyperlinks to Table box rows

    Hi, Is there a way to add hyperlinks to the table box rows?

    Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Cities.jmp", invisible ); New Window( "", dtb = Data Table Box( dt ) ); :Latitude << Set Property( "Event Handler", Event Handler( Click(JSL Quote( Function( {thisTable, thisColumn, iRow}, Web( "https://www.google.com/maps/@" || Char( thisTable:latitude[irow] ) || "," || Char(...

    Jackie_ Jackie_
    Discussions |
    May 19, 2024 7:33 AM
    1461 views | 3 replies

Latest Discussions

  • graph builder bug - x group shift

     (JMP 17, MacOS) I have a JSL scripts that creates multiple graph builder charts, but in some of them, and it's not repeatable always - some of the x groups  are getting different height, causing also the data plotted to be shifted. Another issue - is that I can't set the X group lables text to be 90 degrees rotated to fit long strings without making the chart too wide. This is supported for X var...

    ShlomiB76 ShlomiB76
    Discussions |
    Apr 14, 2024 12:08 AM
    721 views | 0 replies
  • Project ignoring H Splitter Box Set Sizes . . . sometimes

    I'm working with a JMP 17 Project and have a script to import a CSV file, embed a script into the Data Table, and execute the embedded script. The embedded script creates a graph from the data and sets the Project layout. All of these pieces, executed individually, work as intended. The problem I am having is that when I execute the combined script, the outer H Splitter Box ignores <<Set Sizes and...

    ionatx ionatx
    Discussions |
    Apr 4, 2024 1:25 PM
    711 views | 0 replies
  • Error during stemming in text explorer: Inconsistent Recodes in access or evaluation of 'List'

    Hello Community! I'm trying to recode the stemming in text explorer based on a fixed dictionary of words and I'm getting this error "Inconsistent Recodes in access or evaluation of List". This is my code: obj = dt << Text Explorer( Text Columns( :col1) ); obj << Stemming("Stem for Combining"); obj << Add Recodes( {{"attractive", "Attract"},{"unattractive", "Attract"},{"attract", "Attract"},{"ugl...

    sm3001 sm3001
    Discussions |
    Mar 21, 2024 12:49 AM
    933 views | 0 replies
  • DataTable Prompt in application builder on module load

    Hello guys, I have applciation builder with multiple modules. one of the module only contains column list which requires selection of datatable. How to make jmp prompt to select datatable only when that module loads.By default it prompts when the application loads  Kindly guide. Thanks in advance

    ComplexNerd ComplexNerd
    Discussions |
    Mar 7, 2024 3:54 AM
    666 views | 0 replies
  • JMP Project Global Data Filter and Column Switcher

    Hello Guys, I just started exploring jmp project. I am wondering if there is any option to add Global Data Filter and a global column switcher to a jmp project.Currely i have created a jmp project with various reports from a datatable (similar to dashboard) but i want to know if there is a option to add a global data filter and also a global column switcher to this screen. My idea : To create a sc...

    ComplexNerd ComplexNerd
    Discussions |
    Mar 7, 2024 12:10 AM
    621 views | 0 replies
view all discussions