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

  • Copy Column Groups From a Parent Table

    I'm creating a summary from a parent table.  Columns in the parent table are grouped and I want to maintain the grouping in the summary table?  I have renamed columns in the summary to match the parent if that helps?

    SpannerHead SpannerHead
    Discussions |
    Jul 1, 2025 12:26 PM
    544 views | 3 replies
  • Can I copy the embedded scripts from one table to another?

    If I have a parent table with many scripts embedded.  Can I copy those easily to a summary table or transposed table automatically using JSL?  

    SpannerHead SpannerHead
    Discussions |
    Jul 1, 2025 10:49 AM
    751 views | 4 replies
  • Finding Indices Greater Than a Specified Value in a List

    As shown in the JSL below, in the case of a Matrix, 'loc' can be used to display indices greater than 5, but it cannot be applied to a List. How should I find the indices greater than a certain value in the case of a List? show(Loc( [5, 7, 3, ., 5] >= 5 )); show(Loc( {5, 7, 3, ., 5} >= 5 )); //Error

    BabyDoragon BabyDoragon
    Discussions |
    Jul 1, 2025 4:00 AM
    428 views | 1 replies
  • Pass Column Properties on to Summary Table

    I have a complicated way to do this, wondering if something better exists?  Is it possible to have the column properties from a parent table pass forward to a summary table?

    SpannerHead SpannerHead
    Discussions |
    Jun 30, 2025 10:35 PM
    650 views | 4 replies
  • Data table referencing when combining windows

    Hi, I am using the JMP ver 18.2 I have an issue when trying to combine windows into a dashboard.  For example, when I tried to combine the following 2 reports,   Instead of having the 2 reports showing up as a dashboard, what I get was a new data table and a dashboard with empty frames. I think this is caused by the table referencing issue. Is there a preference or method to combine windows with...

    Answer_Seeker Answer_Seeker
    Discussions |
    Jun 30, 2025 12:43 PM
    782 views | 4 replies

Latest Discussions

  • Copy Column Groups From a Parent Table

    I'm creating a summary from a parent table.  Columns in the parent table are grouped and I want to maintain the grouping in the summary table?  I have renamed columns in the summary to match the parent if that helps?

    SpannerHead SpannerHead
    Discussions |
    Jul 1, 2025 12:26 PM
    544 views | 3 replies
  • How to add a connection between the first point and the last point in this diagram?

    Thanks Experts! dt=Open("$SAMPLE_DATA/Big Class.jmp"); Graph Builder( Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( :weight ) ), Elements( Points( X, Y, Legend( 6 ) ) ), SendToReport( Dispatch( {}, "400", ScaleBox, {Legend Model( 6, Properties( 0, {Marker Size( 2 )}, Item ID( "weight", 1 ) ) )} ) ) )

    lala lala
    Discussions |
    Jun 26, 2025 9:38 PM
    713 views | 4 replies
  • How to reference stat columns language independent or how to force English stat column names?

    Hi all,

    I am trying to write a scripts that has to work in different language settings of JMP. Parts of my script use the Summary function: Summary( Group( :SomeColumnX, :SomeColumnY, :SomeColumnZ ), // number of grouping columns different each time N( :Result ), Mean( :Result ), Std Dev( :Result ), CV( :Result ), Freq( "None" ), Weight( "None" ), statistics column name format( "stat" ) ); ...

    Robbb Robbb
    Discussions |
    Jun 26, 2025 4:29 AM
    391 views | 1 replies
  • Calculate the angle between two planes

    Hi folks,   I have 30 discrete points in X, Y, Z defining plane 1, and 30 other points in X, Y, Z defining plane 2, I need to calculate the angle between plane 1 and plane 2. The ChatGPT provides the following JSL script, but it stuck at row #33. Could any of you help check the two attachments (*.jmp and *.jsl) to get this script going? Thanks a lot.     // Use current data table dt = Current Data...

    TDK_Long TDK_Long
    Discussions |
    Jun 25, 2025 5:37 PM
    691 views | 2 replies
  • Colour Plots by Pass and Fail

    I have a script that plots metrics by wafer number.  If the wafer falls below a threshold of passing die, it is designated a fail.  Is there a way to have the colours of the plots reflect pass and fail aside from creating a separate grading column for each parameter?    

    SpannerHead SpannerHead
    Discussions |
    Jun 25, 2025 1:41 PM
    2621 views | 17 replies

Latest Discussions

  • How to export a model formula to Excel?

    I want to be able to take the prediction formula that I got from my multiple linear regression and put it in excel. I have multiple Quantitative and Categorical X variables and some are splined. I have also preformed a BoxCox transformation. What are the steps that I need to do to take the formula that is given and have it working in excel. I have no coding experience but am not against learning a...

    DWS DWS
    Discussions |
    Jun 13, 2025 8:33 AM
    517 views | 0 replies
  • 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
view all discussions