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

  • Multifile Import in a script / workflow

    What is the best way to use Multi File Import in a script? [I want to give the user the chance to edit the settings and then click on Import.]   My current approach: Pause the script till the import is ready:
    - use a while loop
    - stop it via
    Set Import Callback
    finished= 0; mfi = Multiple File Import( <<Set Import Callback( finished=1) ); my win = mfi << createwindow; while(not(finished), wait(1))...

    hogi hogi
    Discussions |
    Apr 13, 2025 5:42 AM
    988 views | 4 replies
  • How do I make a date/time box fuction with alternative text inputs?

    The script I'm working on has this function that creates a datebox with a default value as the argument, and if the user enters something that can't be recognized as a date, it sets the text back to that default value.  I want to add a feature where if you type certain keywords into the datebox, it will trigger it to do a certain behavior.  For example if the user types "yesterday" it will set the...

    PromtheusXavier PromtheusXavier
    Discussions |
    Apr 12, 2025 2:27 AM
    452 views | 1 replies
  • JMP 18 Python API

    Hello JMP Community.   I have JMP18 and am playing around with the new Python Integration.   I have a datatable. How would I create trendcharts using this datatable in JMP's Python Editor?   Thanks All!

    AdditiveLamb108 AdditiveLamb108
    Discussions |
    Apr 11, 2025 12:14 PM
    929 views | 3 replies
  • Process Screening By Groups

    I want to automate a Process Screening, whereby all grouped variables are included as Process Variables.   The Typical script I get for the Process Screening looks like this   Process Screening( Process Variables( Column Group( "ENG" ), Column Group( "REJ" ) ), Grouping( :WAFER, :LOT ), Control Chart Type( "Indiv and MR" ) ); I am able to create a list of available groups but can't figure ...

    SpannerHead SpannerHead
    Discussions |
    Apr 10, 2025 11:58 AM
    732 views | 2 replies
  • Pi Import Options - the Max count option

    I haven't seen any recent posts about the Pi Importer options.  This was supposed to be an upgrade in 18, but I'm struggling with the Max Count setting especially.  I'm not sure there is really a question here, but sharing what I've learned and wondering if anyone else has other insight to share here. I focus on the Raw Data Import because of the structure of our data and trying to remove any laye...

    LoveDataViz7 LoveDataViz7
    Discussions |
    Apr 10, 2025 7:01 AM
    1390 views | 2 replies

Latest Discussions

  • Multifile Import in a script / workflow

    What is the best way to use Multi File Import in a script? [I want to give the user the chance to edit the settings and then click on Import.]   My current approach: Pause the script till the import is ready:
    - use a while loop
    - stop it via
    Set Import Callback
    finished= 0; mfi = Multiple File Import( <<Set Import Callback( finished=1) ); my win = mfi << createwindow; while(not(finished), wait(1))...

    hogi hogi
    Discussions |
    Apr 13, 2025 5:42 AM
    988 views | 4 replies
  • How do I make a date/time box fuction with alternative text inputs?

    The script I'm working on has this function that creates a datebox with a default value as the argument, and if the user enters something that can't be recognized as a date, it sets the text back to that default value.  I want to add a feature where if you type certain keywords into the datebox, it will trigger it to do a certain behavior.  For example if the user types "yesterday" it will set the...

    PromtheusXavier PromtheusXavier
    Discussions |
    Apr 12, 2025 2:27 AM
    452 views | 1 replies
  • JMP 18 Python API

    Hello JMP Community.   I have JMP18 and am playing around with the new Python Integration.   I have a datatable. How would I create trendcharts using this datatable in JMP's Python Editor?   Thanks All!

    AdditiveLamb108 AdditiveLamb108
    Discussions |
    Apr 11, 2025 12:14 PM
    929 views | 3 replies
  • Pi Import Options - the Max count option

    I haven't seen any recent posts about the Pi Importer options.  This was supposed to be an upgrade in 18, but I'm struggling with the Max Count setting especially.  I'm not sure there is really a question here, but sharing what I've learned and wondering if anyone else has other insight to share here. I focus on the Raw Data Import because of the structure of our data and trying to remove any laye...

    LoveDataViz7 LoveDataViz7
    Discussions |
    Apr 10, 2025 7:01 AM
    1390 views | 2 replies
  • How can modify this script to trigger when the cursor points?

    It used to be click-triggered gbFrame = (gb0 << report)[FrameBox(1)]; gbFrame << Set Graphlet( Picture( try(Close(dzK, NoSave)); Current Data Table(dt); dzK = dt << Subset( Output Table("K"), Selected Rows(0), Rows(dt << Get Selected Rows()), Selected columns only(0) ); dzK << Set Window Size(800, 500); ...

    lala lala
    Discussions |
    Apr 10, 2025 4:18 AM
    1371 views | 6 replies

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