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 to reproduce SAS Multidimensional Scaling (MDS)

    I am doing nonmetric multidimensional scaling using both SAS and JMP.  My input for JMP is an n*n distance matrix (or dissimilarity matrix ). I was following the steps: Analyze-->Multivariate methods-->Multidimensional scaling and set the number of dimensions to 5. In SAS, I was using the proc mds procedure. My input matrix is the same lower triangle dissimilarity matrixproc mds data=my_matrix lev...

    huangr2 huangr2
    Discussions |
    Sep 18, 2022 9:51 PM
    2187 views | 2 replies
  • General guidance on follw-up DOE for DSDs and resources?

    Hi I am a newbie in DOE and using JMP. I have pharmaceutical formulation that involves 5 continuous factors and 4 responses to optimize. I have used DSDs to identify the design space that I want to further explore and optimize the formulation. I fit the model after acquiring the data and remove the effect that is not important (F5 and all quadratic forms and interactions). By maximizing the desira...

    BJK_JerseyBoy BJK_JerseyBoy
    Discussions |
    Sep 18, 2022 1:10 PM
    3676 views | 4 replies
  • Formula Editor

    Hi, I'm trying to write a formula that will check if the values in Column A & Column B are both over zero OR if the values in Column C & Column D are both over zero (and so on with many column pairs).  If at least one pair has both values over zero, I would like the formula to return 1.  If not, return 0.  However, the formula I wrote is returning all 1's... even in rows that have all negative num...

    EH1 EH1
    Discussions |
    Sep 16, 2022 6:35 AM
    2721 views | 6 replies
  • How to delete Filter Col Selector display box?

    I have a Filter Col Selector with filter text field (because of many columns in the data table): Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Bands Data.jmp" ); pb = Panel Box("Test", fcl = Filter Col Selector( dt, all ) ); New Window( "Filter Col Selector Example", pb ); I get the list of columns (red frame) and filter (green frame)Let's say I now want to delete the whole thing. I s...

    miguello miguello
    Discussions |
    Sep 15, 2022 12:33 PM
    3012 views | 7 replies
  • Is Missing command- Scrippting

    In this example, ;"Sum of A+B+C" calculates sum of :A + :B + :C in each row with this formula: If( Is Missing( :A ), 0, :A ) + If( Is Missing( :B ), 0, :B ) + If( Is Missing( :C ), 0, :C )If I change the specific column names to with column number, the script is not working anymore and generates an error If( Is Missing( Column( 1 ) ), 0, Column( 1 ) ) + If( Is Missing( Column( 2 ) ), 0, Column( 2 ...

    GroupSquareWolf GroupSquareWolf
    Discussions |
    Sep 13, 2022 7:54 PM
    1827 views | 4 replies

Latest Discussions

  • Formula Editor

    Hi, I'm trying to write a formula that will check if the values in Column A & Column B are both over zero OR if the values in Column C & Column D are both over zero (and so on with many column pairs).  If at least one pair has both values over zero, I would like the formula to return 1.  If not, return 0.  However, the formula I wrote is returning all 1's... even in rows that have all negative num...

    EH1 EH1
    Discussions |
    Sep 16, 2022 6:35 AM
    2721 views | 6 replies
  • Is Missing command- Scrippting

    In this example, ;"Sum of A+B+C" calculates sum of :A + :B + :C in each row with this formula: If( Is Missing( :A ), 0, :A ) + If( Is Missing( :B ), 0, :B ) + If( Is Missing( :C ), 0, :C )If I change the specific column names to with column number, the script is not working anymore and generates an error If( Is Missing( Column( 1 ) ), 0, Column( 1 ) ) + If( Is Missing( Column( 2 ) ), 0, Column( 2 ...

    GroupSquareWolf GroupSquareWolf
    Discussions |
    Sep 13, 2022 7:54 PM
    1827 views | 4 replies
  • Delete columns with for loop

    Hi, I create a for loop script to delete empty column (column contains only N/A).It works ok except on one file, one column get deleted when it's not suppose to.Not sure what's wrong for (i= ncols (dt[d]),i>=1,i--, summarize(data table(dt[d]),temp = by(column(i))); if(nitems(temp) ==1 & temp[1]=="N/A", data table(dt[d])<< delete columns(column(i)); ); );

    yanee yanee
    Discussions |
    Sep 13, 2022 11:59 AM
    1500 views | 1 replies
  • Model classification thresholds add-in display "negative" probability

    Hi, I've been looking at this add-in which is very useful.https://community.jmp.com/t5/JMP-Add-Ins/Exploring-Model-Classification-Thresholds/ta-p/66964 In our case we don't have a probability but instead we have a status and a measurement that ranges between -10 and 10.I want to adapt the script so that the slider can move between -10 and 10 (I've already done it and it works). However the "Probab...

    Agustin Agustin
    Discussions |
    Sep 13, 2022 6:43 AM
    706 views | 0 replies
  • Why JMP does not display model performance for simple moving average forecast

    Why JMP does not display model performance for simple moving average forecast? For SMA it only shows the forecast plot.

    abhinavsharma91 abhinavsharma91
    Discussions |
    Sep 12, 2022 4:54 PM
    924 views | 1 replies

Latest Discussions

  • Model classification thresholds add-in display "negative" probability

    Hi, I've been looking at this add-in which is very useful.https://community.jmp.com/t5/JMP-Add-Ins/Exploring-Model-Classification-Thresholds/ta-p/66964 In our case we don't have a probability but instead we have a status and a measurement that ranges between -10 and 10.I want to adapt the script so that the slider can move between -10 and 10 (I've already done it and it works). However the "Probab...

    Agustin Agustin
    Discussions |
    Sep 13, 2022 6:43 AM
    706 views | 0 replies
  • SUR (Seemingly Unrelated Regressions)

    HI, How to find estimators of FGNLS and NLS (Seemingly Unrelated Regressions) Using JmpPro.# Note that it is present in SAS in the proc syslin
    and it is in stat in the nlsur command Regards

    Raaed Raaed
    Discussions |
    May 5, 2022 4:45 PM
    932 views | 0 replies
  • Friedman post hoc analysis

    Hello, I am trying to do a matched sample analysis across three different factors. I wanted to:1. Confirm that my sample would be what I pick for 'Block" when I do Fit Y by X when running Friedman's test2. Is there a post hoc analysis in JMP that I can use? I dont see Nemenyi or Conover as an optionThanks for your time.  

    pnakashe pnakashe
    Discussions |
    May 5, 2022 12:02 PM
    1135 views | 0 replies
  • JMP script: Script Alarm Control chart- Table with atypical batch number and values

    Hello everyone,I am trying to make a table with the OOT (out of Trend) batches with their respective "atypical" values.I used for that the "script alarm" function as I could found some exemples on the JMP community. Here is my script:  z_KSigmaZ =1.4; // Création de la Carte de controle si N catégories > 5 Names Default To Here( 1 ); If(N Items(Associative Array(:"RNS/NS tordu (srg)")) > 5, Gr...

    Sebastienlg Sebastienlg
    Discussions |
    Apr 29, 2022 6:29 AM
    815 views | 0 replies
  • Error When Trying to Create User to Access the JMP Virtual Lab

    While taking the Exploratory Data Analysis module, it is time to practice. However, when trying to access the JMP Virtual Lab, I cannot get past the "Create User" option.  JMP VIRTUAL LABTo use the Virtual Lab, please select the Create User link below. If you would prefer to use software on your own machine, please select the Download Data link below.
    Create User Download Course Data Clicking the C...

    TielsForTheWin TielsForTheWin
    Discussions |
    Apr 14, 2022 10:48 AM
    939 views | 0 replies
view all discussions