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 concatenate rows in a given column to a string in JSL?

    If I have a datatable dt with one column col1 and several rows containing characters e.g. a, b, c, d i.e. one character per row. How do I get a string of the form myString = 'a','b', 'c', 'd' ? If I do this  x = Associative Array( dt:"col1" ) << Get Keys; show (x);it gives me  x = {"a", "b", "c", "d"};whereas I would like to get a string myString = 'a', 'b', 'c', 'd'to use further in my next line ...

    Neo Neo
    Discussions |
    Sep 22, 2022 9:59 AM
    1415 views | 1 replies
  • Why is a cell in a new row blocked with an "X"?

    Hi all, while manually entering a new row into a data table the corresponding cell in the third column immediately is blocked with a black "X". See attached photo. Any idea as to why this is happening? I closed all graphs associated with the data table. The first two columns are scroll-locked for easy viewing which is the only thing I notice that might be a factor. It looks like a number can be en...

    jmv jmv
    Discussions |
    Sep 22, 2022 6:37 AM
    1601 views | 2 replies
  • Using FORMULA for pasting the alues from one column based on the other column using IF statement

    I am trying to fill the column of Slopes_1 and Intercept_1 (1000 rows)  from Slopes and Intercept (36 rows), respectively based on if Cycle 2(1000 rows)  matches Cycle 3 (36 rows)Can you suggest a formula to be inputted in Slopes_1 and Intercept_1 ?  

    AlphaPanda86751 AlphaPanda86751
    Discussions |
    Sep 21, 2022 8:11 AM
    1252 views | 2 replies
  • JSL Script to change column name in formula with real formula from the corresponding column

    Hi everyone I try to automate the process where I want to change the column name in one formula (i.e. "Lower 90% Indiv TiterHPLCProtA@D14"  with the 'real' formula of this column (second picture).I want to repeat this process for all column names within the first picture.  The script would need something like:Find all column names within the first formulaStart with the first column nameFind the co...

    Marco_ Marco_
    Discussions |
    Sep 20, 2022 12:22 AM
    3415 views | 3 replies
  • How to calculate Cpk with specified sigma

    Hi All,I used to be able to calculate Cpk with Robust Standard diviation, typed in in the "Specified Sigma" box. But I couldn't find it in JMP16 any more. Please help. Thank you.lJane

    JaneYang JaneYang
    Discussions |
    Sep 19, 2022 12:35 AM
    2132 views | 2 replies

Latest Discussions

  • Using FORMULA for pasting the alues from one column based on the other column using IF statement

    I am trying to fill the column of Slopes_1 and Intercept_1 (1000 rows)  from Slopes and Intercept (36 rows), respectively based on if Cycle 2(1000 rows)  matches Cycle 3 (36 rows)Can you suggest a formula to be inputted in Slopes_1 and Intercept_1 ?  

    AlphaPanda86751 AlphaPanda86751
    Discussions |
    Sep 21, 2022 8:11 AM
    1252 views | 2 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
  • 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

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
    931 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
    1134 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