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

  • Data Filter in JSL script running slow

    I am trying to create a JSL script that will utilize data filter and select ~180 tests of interest in "ITEM_NAME" column and create a new table. When I use Data Filter and run it manually it doesn't have any delays. Though when I try to automate the process it takes ~15 minutes to create the new table. What can I do to make it run more efficiently? Open( "$DOCUMENTS/test.jmp" ); ref10 = Data Tabl...

    andrey andrey
    Discussions |
    May 13, 2025 1:30 PM
    2347 views | 7 replies
  • How to get new column to populate cycles in large data set for multiple cycles on the same sample?

    Hello,    I have some very large data sets (>1million rows) of numerous samples that have been tested in a cyclical fashion. The same sample has gone through 100's of cycles and I'm hoping to find a way to quickly add the cycles to my data table.    The test starts at zero displacement and then runs to a peak force (varies depending on which cycle it is) and then returns back to a zero/near-zero v...

    WeightedMarten3 WeightedMarten3
    Discussions |
    May 13, 2025 4:53 AM
    1159 views | 4 replies
  • add another layer of Edit boxes Button

    Hi    I would like to create an add in that compares different Sampling Plans using the OC curves. I would like to allow the user to add many input layers/Lines using an "Add more" button. (See picture below) Therefore The part of my script that I am focused on is: ob1 = Outline Box( "Type in your own parameter values", H List Box( H List Box( Text Box( "LQ:" , << set width(20)), neb_LQ ...

    Georgios_Tsim Georgios_Tsim
    Discussions |
    May 9, 2025 10:26 AM
    1093 views | 4 replies
  • How to convert Page Setup Setting (PDF) to JSL Script?

    Hi Expert,I'm trying to save my journal report in .pdf through JSL scripting.My issue now is, I can save the report to fit nicely the landscape page manually using below settings;But, when I converted the setting to JSL script, it stays in portrait.Why my script not working? I've set the preferences to landscape as default but still not working// add the header to the journal j = Current Journal()...

    WebDesignesCrow WebDesignesCrow
    Discussions |
    May 9, 2025 5:05 AM
    2052 views | 2 replies
  • Expand row selection

    I want to select a specific group of rows surrounding a row I can easily identify.  In the instance below, I'm able to capture the row of interest, I now need to expand that by 11 rows above and 15 rows below to have the data block of interest.   Current Data Table() << Select where( Contains( As Column(2), "1st Thickness" );

    SpannerHead SpannerHead
    Discussions |
    May 8, 2025 12:28 PM
    1782 views | 8 replies

Latest Discussions

  • Is this a BUG?What is the speed of inserting code during JSL editing in JMP 18?

    I often insert a large amount of code instantly through the input method in the JSL editor.It has long been found that it has been very slow since JMP18, and this phenomenon did not occur in previous versions.
    Now I'm using EmEditor to write JSL.


    lala lala
    Discussions |
    May 8, 2025 7:07 AM
    1732 views | 7 replies
  • Can the width of the X-axis of the grouped graphics be set separately?

    For example, after I draw the graph like this, the widths of these two x-axes are set to be different.   Thanks! dt=Open("$SAMPLE_DATA/Big Class.jmp"); d2=dt<<Summary(Group(2,3),sum(4),Freq("0"),Weight("0"),Link to original data table(0),statistics column name format("column")); Column(d2,3)<<set name("S"); d1=dt<<Summary(Group(3),Freq("0"),Weight("0"),Link to original data table(0),statistics col...

    lala lala
    Discussions |
    May 7, 2025 1:55 PM
    2943 views | 15 replies
  • Installation

    I tried installing jmp but an error is showing "you don't have necessary administrative privileges to install this software ", anybody plz help

    Ismaeel09 Ismaeel09
    Discussions |
    May 6, 2025 4:36 AM
    1272 views | 4 replies
  • Column Properties (Multiple Spec Limits per column)

    Hi, 
    let's say I have a column (Resistance) that is tested at different temperatures. I have three testing temp (Ex:25,35 and 45). Is it possible to have different spec limits for Resistance column based on the temp condition? Thanks.

    RA899 RA899
    Discussions |
    May 6, 2025 1:12 AM
    991 views | 3 replies
  • Problems with Graph update function

    Hi there - I have a script that works to a certain point - It gets a list of specfic columns, assigns these to a list and then uses a combobox to let the user select which column to use for a graph creation. This works fine but the problem is now that when the graph is created it will display outside the window and also appends the new graph - i just need to update the window with the new version....

    lodey101 lodey101
    Discussions |
    May 5, 2025 9:53 PM
    489 views | 1 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
    559 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
    584 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
    619 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