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

  • Handling Conditional Display of Y-Axis Variables in JSL for Graph Building

    When using `graph built`, how can I describe the requirement in JSL that certain Y-axis variables, which may not always appear, should be displayed if they have values and not displayed if they have no values? The following two methods have not been effective. 1.dt = Open("$SAMPLE_DATA/Big Class.jmp"); Graph Builder( Size( 534, 450 ), Show Control Panel( 0 ), Variables( X( :sex ), try(Y( :bbb )...

    BabyDoragon BabyDoragon
    Discussions |
    Feb 19, 2025 4:24 AM
    1019 views | 3 replies
  • Which version of JMP is the highest version with 32 bits?

    Which version of JMP is the highest version with 32 bits?Does it still install in 64-bit Windows 10? Thanks!

    lala lala
    Discussions |
    Feb 18, 2025 10:26 PM
    1118 views | 3 replies
  • Can JMP Software's JSL operations use GPU acceleration?

    Currently, it's easy to leverage GPU acceleration for computations in Python. Can this be achieved using JSL alone? Thanks Experts! 64bit win10

    lala lala
    Discussions |
    Feb 18, 2025 7:20 AM
    1241 views | 4 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
    578 views | 0 replies
  • How can get an AI to be more familiar with the JSL scripting language in JMP?

    I often use AI to write Python code, but I find it's less familiar with JSL. I explain that I want to open local JMP files or save results as JMP tables, but it often gives me code that deals with CSV files, or the JMP table code it generates doesn't work.I have to constantly remind it of the correct syntax.Here's a syntax reference for reading JMP files:import jmp import numpy as np import pandas...

    lala lala
    Discussions |
    Feb 18, 2025 1:47 AM
    2453 views | 5 replies

Latest Discussions

  • Which version of JMP is the highest version with 32 bits?

    Which version of JMP is the highest version with 32 bits?Does it still install in 64-bit Windows 10? Thanks!

    lala lala
    Discussions |
    Feb 18, 2025 10:26 PM
    1118 views | 3 replies
  • Can JMP Software's JSL operations use GPU acceleration?

    Currently, it's easy to leverage GPU acceleration for computations in Python. Can this be achieved using JSL alone? Thanks Experts! 64bit win10

    lala lala
    Discussions |
    Feb 18, 2025 7:20 AM
    1241 views | 4 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
    578 views | 0 replies
  • AI:create the L25(5^6) orthogonal array design.

    Translate the SAS code in this document to JMP's JSL to implement the construction of orthogonal arrays with an orthogonal Latin square structure. For example, create the L25(5^6) orthogonal array design.

    lala lala
    Discussions |
    Feb 15, 2025 10:52 PM
    2344 views | 5 replies
  • Using JMP 19 EA for Windows on ARM Mac using Parallels

    I'm a Mac user, and JMP is great on Mac. However, I wanted to run the Windows version on my Mac under Parallels. I have an M4 Mac Pro, and I am running the latest Parallels version (20.2.1) and Windows 11 with all the lates updates. I installed JMP Pro Windows successfully. But when I try to open it, I get a blue rotating icon, then nothing. What could I be doing wrong? I'm not very familiar with ...

    john_madden john_madden
    Discussions |
    Feb 14, 2025 4:07 AM
    1614 views | 3 replies

Latest Discussions

  • 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
    578 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
    614 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
    608 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
    492 views | 0 replies
  • A custom function evaluates the return value

    fyi While debugging @replace Head, I noticed that a custom function evaluates the return values +1x compared to a standard function:myFunction = function({}, return(Expr(3*5))); add custom functions (newcustom function("my custom", "function", function({}, return(Expr(3*5))))); Show(myfunction()); Show(my custom:function())so maybe add another Expr() ...add custom functions (newcustom function("m...

    hogi hogi
    Discussions |
    Jan 3, 2025 2:05 PM
    465 views | 0 replies
view all discussions