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

  • How do I get to prompt a user to define the LSL and USL for each subset table?

    A customer asked how to create a JSL script to prompt other users to define the LSL and USL for each subset table.   I figured might as well post the script here to help others who might have the same request in the future. Anyone who has feedback, questions or enhancements, please feel free to add a comment.   // Subset data table // → Data Table( "Product=B" ) dtList = Open("$SAMPLE_DATA/Abra...

    yasmine_hajar yasmine_hajar
    Discussions |
    Jun 6, 2025 12:43 PM
    592 views | 1 replies
  • How to Display Dynamic Variables in Bold within a Textbox

    When using a Textbox, we can make words bold like the 'Test' text in the JSL below. However, if I want to display a dynamic variable in bold as well, how can I achieve that? Variable = "Apple"; New Window( "test", Text Box( "<b>Test</b>", <<Markup ), Text Box( Variable ), Text Box( "<b>Variable</b>", <<Markup ), );

    BabyDoragon BabyDoragon
    Discussions |
    Jun 6, 2025 4:53 AM
    695 views | 2 replies
  • Graphique

    Bonjour à tous,   Dans un graphique j'aimerais pouvoir afficher que les 3 premiers éléments selon un critère de pourcentage -> afficher que les 3 items avec le pourcentage le plus élevé par quarter :   Vous trouverez la base de données en pièce-jointe.      

    hcarr01 hcarr01
    Discussions |
    Jun 5, 2025 8:03 AM
    1018 views | 4 replies
  • How to use JSL to determine whether a column has event handlers?

    dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); :height << Add Column Properties( Set Property( "Event Handler", Event Handler( Click( JSL Quote(Function( {thisTable, thisColumn, iRow}, {}, ab=(dt<<get selected rows)[1]; );) ) ) ) ); Thanks Experts!

    lala lala
    Discussions |
    Jun 5, 2025 7:49 AM
    642 views | 2 replies
  • How to set the value in a NumberColEditBox from JSL?

    I made a Ternairy plot, like the one in JMP  via Help > Help tool click on ternairy plot, "Additional Examples of the Ternary Plot Platform" > "Example of a Ternary Plot with a Contour Function". This example has a NumberColEditBox for Temperature. My situation is comparable. In this box I want to change the value from within a JSL script and not by using the slider, but I cannot find out how to d...

    Joost Joost
    Discussions |
    Jun 5, 2025 6:52 AM
    530 views | 1 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
    557 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
    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
    612 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
    607 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
    491 views | 0 replies
view all discussions