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

  • Use Variable Columns in Platform Script

    I encounter an error when trying to use variable columns in the Split platform.  Does anyone know why this is not working, and how to resolve it?  JMP 18.2.0.   Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); // These all work. dt << Split( Split By( :sex ), Split( :height, :weight ), Group( :name, :age ), Output Table( "Split of Big Class 1" ) ); dt << Split( Split By( :...

    robot robot
    Discussions |
    May 1, 2025 8:05 PM
    596 views | 1 replies
  • Workflow Builder and row state

    Hi, It seems that Workflow Builder does not appear to record the script when the Row data filter is used to select rows of a table and then change row state for the selected rows. Tried using log window to view the steps and could not locate the steps either. Any help would be appreciated. Cheers.

    Onjai Onjai
    Discussions |
    May 1, 2025 5:43 AM
    1116 views | 4 replies
  • Couldn't install JMP Excel Add-in on Snapdragon X Elite laptop for both JMP17 and 18

    Was able to install and run both JMP17 and JMP18 on Snapdragon X Elite laptop. However, having issue installing JMP Excel add-in for both. The installation stalled at the following step (https://community.jmp.com/t5/JMP-Knowledge-Base/How-to-install-or-re-install-the-Excel-Add-in-for-JMP-when-the/ta-p/575299)  The installation options box now appears. Find the entry for the Excel Add-In and unchec...

    ILoveJMP ILoveJMP
    Discussions |
    Apr 30, 2025 5:02 PM
    723 views | 2 replies
  • Adding explicit table reference in JSL code leads to unexpected results

    I have a short JSL script that I'm looking to add to a larger automated workflow. The intent is to iterate over the values in a column (layer_type) and if it finds any value other than SSOD the code should return 1. If all values in the columns are 'SSOD' then it should return 0. This is being used in a if/else split in a workflow to throw an error. In general if you have recommendations of a bett...

    Stefan_Moser Stefan_Moser
    Discussions |
    Apr 30, 2025 9:30 AM
    1314 views | 5 replies
  • How to make the background of images made by JSL transparent using python?

    I didn't succeed like this. Thanks! dt = Open("$SAMPLE_DATA/Big Class.jmp"); p1 = dt << Graph Builder( Show Control Panel(0), Variables(X(:height), Y(:weight), Overlay(:sex)), Elements(Points(X, Y, Legend(1)), Smoother(X, Y, Legend(2))) ); img = p1 << Get Picture; img_binary = img << Get Blob("PNG"); base64_img = Blob To Base64(img_binary); Python Send("base64_img", base64_img);...

    lala lala
    Discussions |
    Apr 30, 2025 7:17 AM
    1886 views | 9 replies

Latest Discussions

Latest Discussions

  • Inquiry Regarding the Use of JMP and JMP Live (Suppress Eval?)

    Hello, I am a user of JMP Live.
    I am currently utilizing a simple function within JMP to leverage the Auto Refresh feature in JMP Live for dashboard purposes. However, while the function operates correctly on my PC, it does not work properly on JMP Live.Even though I have disabled "Suppress Eval" before executing Data Publish, when I later download the data, the column where the function should be ...

    DJ_Kim DJ_Kim
    Discussions |
    Feb 27, 2025 2:59 PM
    560 views | 0 replies
  • Streamlining Data Workflows With JMP & MATLAB

    Integrating tools like JMP and MATLAB offers a streamlined approach to engineering analysis, making workflows more efficient and reducing the need for redundant script rewriting. By leveraging JMP’s powerful data analysis and visualization capabilities alongside MATLAB’s robust computational tools, engineers can seamlessly combine the strengths of both platforms. This integration allows for the ra...

    brycerjs8 brycerjs8
    Discussions |
    Feb 18, 2025 7:07 AM
    585 views | 0 replies
  • How to adjust the size of R plot imported with get R graphics(); ?

    I'm trying to run R code in JMP to create a plot. I succeeded in importing the plot in png format, but failed to adjust the size of the plot. I can adjust the "plot_from_R" in png format with the set size(); function in jsl, but it is not proportional and distorted. How can I import plot_from_R in the size I want?   R Init(); R Submit( "\[ windows(300,100) #it doesn't work plot(function(x) dnorm(...

    CountableModel1 CountableModel1
    Discussions |
    Jan 15, 2025 4:01 PM
    620 views | 0 replies
  • Exceptions are the utilities Show, Write, and Print ...

    from: https://www.jmp.com/support/help/en/18.1/?os=win&source=application#page/jmp/advanced-expressions-macros-and-lists.shtml#  If you assign the expression x+y to a, quoting it as an expression with Expr, then whenever a is evaluated, it evaluates the expression using the current values of x and y and returns the result.
    Exceptions are the utilities Show, Write, and Print, which do not evaluate e
    ...

    hogi hogi
    Discussions |
    Jan 7, 2025 10:44 PM
    611 views | 0 replies
  • Extract Expr: Issue with scoped variable

    This works: Extract Expr(:height << set name( "new" ), :height );  But this one doesn't *):Extract Expr(myDataTable:height << set name( "new" ), myDataTable:height );Fortunately there is this dirty trick of Extract Expr (it automatically resolves every defined variable **) - which allows this workaround:x = Expr( myDataTable:height); Extract Expr(myDataTable:height << set name( "new" ), x ) *) why...

    hogi hogi
    Discussions |
    Jan 7, 2025 11:35 AM
    494 views | 0 replies
view all discussions