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

  • Crop a JPG Image

    Trying to crop the light grey border from around the outside of the below wafermap image using the following script. I guess I'm not understanding how the crop message works as there is no difference in the before and after images. Any idea of what I'm doing wrong?  Cheers, Troy  img = open("D:\wafer.jpg", jpg); win1 = newWindow("Original", img); img << crop(left(5),right(5),top(5),bottom(5)); wi...

    thickey thickey
    Discussions |
    Apr 29, 2024 6:11 AM
    5787 views | 9 replies
  • Trying to write script that will append results of regression analysis to an existing excel spreadsheet

    Hi - I am trying to write a jsl script that will append the results of a regression analysis to an existing excel file.  My current script writes to an excel file but I want to be able to run the script multiple times and append each new result to the existing excel sheet.  (Currently I am appending the new result manually, by hand.)   See attached script.  Thanks in advance! ps  I am using JMP Pr...

    learning_JSL learning_JSL
    Discussions |
    Apr 29, 2024 4:30 AM
    3708 views | 8 replies
  • How to import a variable value from JMP to Python?

     I would like to print the value of "rate" from JMP to Python.  rate = 0.07;
    show(rate);Python Init(Use Python Version("3.12.3"));
    Python Send( rate, Python Name( "err_rate" ) );
    Python Submit( "print(err_rate)" );

    vharibal vharibal
    Discussions |
    Apr 29, 2024 4:05 AM
    1306 views | 2 replies
  • Changing char date column to numeric date

    Hello,Attached is a table with a column called StartDate. It is in char format and have excessive '0's at the end of each date. I wish to write a script to change the StartDate column to this format like : 04/12/2024 4:10:09 PM. Any help is appreciated. Thanks! 

    cchueng cchueng
    Discussions |
    Apr 28, 2024 10:42 AM
    2155 views | 4 replies
  • ScriptBox scrolling

    Hi, I would like to scroll the following script box to the end, so that the last string written is always visible.  w=new window("a", sb=script box()); for (i=1, i<=100, i++, sb<<append text(char(i) || "\!N");
    // I would like to set a scroll to end here, so that the last written string is visible.
    );
    By instpect the the display box tree, I see that a "scroll box" is automatically created aro...

    matteo_patelmo matteo_patelmo
    Discussions |
    Apr 28, 2024 8:52 AM
    1943 views | 2 replies

Latest Discussions

  • How to import a variable value from JMP to Python?

     I would like to print the value of "rate" from JMP to Python.  rate = 0.07;
    show(rate);Python Init(Use Python Version("3.12.3"));
    Python Send( rate, Python Name( "err_rate" ) );
    Python Submit( "print(err_rate)" );

    vharibal vharibal
    Discussions |
    Apr 29, 2024 4:05 AM
    1306 views | 2 replies
  • JSL for "Configure levels"

    Hi. I do not see any JSL command to set Axis levels (like x others).
    Am I missimg something or the option doesn't exist in JSL?Thank you

    tom_abramov tom_abramov
    Discussions |
    Apr 28, 2024 7:08 AM
    1804 views | 3 replies
  • Multiple Spec Limits Based on Row Values

    We often structure our inspection sheets based on column identifiers-- see the attached csv. I was wondering if there was a way to run simultaneous analyses based on feature ID and pulling the spec limits so that for each graph, it uses the spec limits in the subsequent columns. Is this possible? Thanks!

    touradnik touradnik
    Discussions |
    Apr 27, 2024 8:41 AM
    2174 views | 3 replies
  • Query base64 data from SQL into the jmp table

    Hi, I'm trying to import base64 encoded data into JMP, but it seems to be truncating the data at 255 characters. The database column containing the base64 string has a length of 546,168 characters. Is there a way to increase the character limit for the jmp table column? Thanks,Jackie 

    Jackie_ Jackie_
    Discussions |
    Apr 27, 2024 7:47 AM
    3747 views | 6 replies
  • How to color column header (not the cells) ?

    Hi All, Is there a way to just color the column header by using JSL?As an example, I want to color column header for name, age, sex, height, weight only, not coloring the cells.  

    bzanos bzanos
    Discussions |
    Apr 25, 2024 2:02 PM
    2000 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
    712 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
    935 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
    623 views | 0 replies
view all discussions