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

  • Is there a faster way to loop?

    Hello JMP community,   I am analyzing larger amounts of data, typically 350k rows.  For each row, the code runs a loop to calculate the mean offset by "Wafer ID". I’m looking for a faster way of doing this. Is there a way to make the processing faster? The current script takes ~1 hour to complete the loop.
      Names Default To Here( 1 ); dt1 = Data Table( "Reference Data Table.jmp" ); dt2 = Data Ta...

    Jackie_ Jackie_
    Discussions |
    Mar 15, 2023 9:07 PM
    4584 views | 8 replies
  • SVG Difference between JMP and the WEB

    I'm trying to generate a set of Standardised SVG Strings that can be used both in JSL Scripts and in a Web Application. However, from my initial investigations I notice that for the same SVG d-Path String, JSL draws the image using the BOTTOM-LEFT as the 0,0 Point and Browsers use the TOP-LEFT as the 0,0 Point. Is there a JMP Setting to modify the 0,0 position for this use case? Otherwise I would ...

    thickey thickey
    Discussions |
    Mar 14, 2023 3:30 PM
    1845 views | 2 replies
  • Find and replace data which contain certain value range in specific column in JSL

    Hi! all, I would like to find and replace data which contain certain value range in specific column by using jmp scriptHowever, the code didn't take effect Here is my code that want to loop through the data in "mark" column and look for value that more than 1000 and substitute with 99Names Default To Here( 1 ); dt = Data Table( "studentmark" ); headerList = dt << get column names( string ); For(...

    LipYeong LipYeong
    Discussions |
    Mar 14, 2023 10:57 AM
    1286 views | 1 replies
  • How to filter data by time, always 2 weeks prior to current time

    Hi, Wondering how to add a data filter that would pull data only from the last 2 weeks of collection, starting from the time the script is ran. I see how to manually set based on a specific date/time, but not how to have this continuously change with relation to the time it is ran. The data I am looking to filter has full time stamps already. Thank you.

    lcpaul41 lcpaul41
    Discussions |
    Mar 13, 2023 7:00 PM
    1855 views | 1 replies
  • Find the longest repeating pattern

    Hi, Can somebody explain how to find the longest repeating pattern in a column?For example, let's suppose I have the following table:  The pattern with the largest size is: "1 5 6 8 7",  and it occurs 3 times in this column. Notice that there is another pattern in the table ("1 5 6"), which occurs 5 times, but is not the largest.I tried with Screening - Explore patterns, and although it return whi...

    ruskicar ruskicar
    Discussions |
    Mar 13, 2023 2:26 PM
    2144 views | 3 replies

Latest Discussions

  • JMP16 Vs JMP14 Filter

    Hi all! I'm trying to use a script for date filter that works for me in JMP 14 in JMP 16, but the range that appear at JMP14 dose not appear at JMP16. can you help me with a script that make JMP 16 look like JMP 14?   that is the script I use today: filtter_ly = V List Box( ly << Current Data Table() << Data Filter( Location( {0, 0} ), Mode( Show( 1 ), Include( 1 ) ), Add Filter( column...

    HenLu HenLu
    Discussions |
    Mar 13, 2023 4:54 AM
    1143 views | 1 replies
  • Use of Column Properties across 100's of rows

    Question,
    How can I use Column Properties to perform a 1st pass of the Columns using a sigma value, or similar descriptive feature.  Once I have found suspect columns of test data will perform a deeper dive into the data columns. Attached as snip of the dataset. Charles 

    charles_revelle charles_revelle
    Discussions |
    Mar 8, 2023 1:59 PM
    1321 views | 1 replies
  • What kind of interpolation is used when Scale() is applied to an image object?

    Working on a script that processes images and comparing results to a python script that applies similar operations.  When I have a script that goes:<image = new image("$SAMPLE_IMAGES/tile.jpg");image << Scale(0.49);> What kind of interpolation is used when changing the image size? Thank you On JMP 16

    RoamingForests RoamingForests
    Discussions |
    Mar 6, 2023 7:17 AM
    699 views | 0 replies
  • Get column value related to another column minimum

    Hi,I am looking for easier way (without scripting) for extract the X column value of Y axis minimum for each plot/charts.I have N columns chart, the first column is the X axis. the other is sets of measurements\reading.I want to get the X value which related to each set of plots.I did it by script but i want to know if there is an easier way.attached example for data format.following the script I ...

    YGerchman YGerchman
    Discussions |
    Mar 1, 2023 6:36 PM
    1170 views | 1 replies
  • How do I change the Eigenvalue cutoff in Variable Clustering ?

    Hello: I am trying to change the default cutoff for the eigenvalue in variable clustering.  It looks like JMP is using a default value of 1.  Eigenvalue change is not available as an option in the platform.  I looked into the scripting index, and I am not sure how to change the eigenvalue: dt = Open( "$SAMPLE_DATA/Cities.jmp" );
    obj = dt << Cluster Variables( Y( :OZONE, :CO, :SO2, :NO, :PM10 ) ); A...

    AN1 AN1
    Discussions |
    Feb 28, 2023 5:00 PM
    1036 views | 1 replies

Latest Discussions

  • What kind of interpolation is used when Scale() is applied to an image object?

    Working on a script that processes images and comparing results to a python script that applies similar operations.  When I have a script that goes:<image = new image("$SAMPLE_IMAGES/tile.jpg");image << Scale(0.49);> What kind of interpolation is used when changing the image size? Thank you On JMP 16

    RoamingForests RoamingForests
    Discussions |
    Mar 6, 2023 7:17 AM
    699 views | 0 replies
  • JMP Script Window - Hovering over a variable do not show the value stored in the variable if passed between scripts

    I have found that hovering over a variable is very useful feature in JMP Script Window/Editor when debugging the script. I have been working with very long script which I have divided to smaller pieces by using Include-feature. I am able to pass variable content correctly between the included scripts but it looks like hovering do not work on included script windows (showing empty variable content ...

    JanneI JanneI
    Discussions |
    Jan 27, 2023 5:51 AM
    904 views | 0 replies
  • C Stack Usage Error When Sending Code to R

    Hello, I'm trying to invoke some commands in R using the R Submit function in JSL and am getting the error below. Is this an issue with JMP17 and R integration? It only happens when I invoke a specific package using JSL so it's hard for others to replicate w/o installing R and the package as well. I'm using JMP 17.0 and R 4.2.0. Never saw this error with JMP 16. "Error: C stack usage 4123778 is to...

    vigslayer vigslayer
    Discussions |
    Dec 15, 2022 8:14 PM
    1098 views | 0 replies
  • How to run JSL script in user opened JMP session instead creating a new seesion by JMP.dll?

    Currently I developed a windows application based on Interop.JMP.dll. The application contains a functionality to generate JSL file and run it in JMP but I got a issue now. It seems can only create a new session and run it by application instead of using the session that user opened first. I'd like to confirm whether it's possible to run JSL in the session by user opened manually. Appreciate it if...

    SquaresDingo505 SquaresDingo505
    Discussions |
    Oct 24, 2022 7:23 PM
    858 views | 0 replies
  • How to Analyze and Graph Responses with Supercategories

    I use JMP Pro 16. I am doing MCA on 90 columns that have supercategories.  I want to do the analysis and viz on the supercategory classification. Is there a way to do this without having to create separate columns that only have the supercategory classification?  PS:  I don't know how to do JSL scripting.

    TCM TCM
    Discussions |
    Oct 21, 2022 5:59 AM
    904 views | 0 replies
view all discussions