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

  • Box-plot + dot plot + half violin plot

    Dear all, does anyone know if with JMP it is possible to create a graph showing the box-plots with the points inside each box and showing half of a violin plot.
    In practice, a graph similar to the one attached, but with the points inside each box-plot. Thanks Giuseppe  

    GiuseppeC GiuseppeC
    Discussions |
    Sep 27, 2022 2:32 AM
    5696 views | 9 replies
  • merging values from 2 columns into one (mixed numeric and character values)

    Hi I have 2 columns, one containing numeric values, and one containing strings.I want to create a third column that takes the numeric value if the string value is 'parametric', and the string value if it's not. I tried this, but I'm getting an error "Column TEST_RESULT requires numeric values", although it's defined as Character type column.I'm using JMP15 if it matters. col_test_result =dt <<new ...

    shlomi_bakish shlomi_bakish
    Discussions |
    Sep 26, 2022 6:13 PM
    5557 views | 12 replies
  • Mixture Design with Linear Constraints

    I'm trying to set up a mixture design with 6 factors for a formulation. The first 5 factors should add up to exactly 0.5, and the 6th factor is a "dummy" factor that should always be 0.5. When I try to set this up in JMP I am unable to get it to generate a design with these constraints. I am trying to enforce these constraints by having both:1 * X1 + 1 * X2 + 1 * X3 + 1 * X4 + 1 * X5 + 0 * X6 ≤ 0....

    NG NG
    Discussions |
    Sep 26, 2022 12:17 PM
    4081 views | 3 replies
  • Formula - How to Find Most Recent Row (Based on Conditions) and Retrieve Value from a different Column

    Hi - I need help to put a formula to find a most recent row based on conditions and retrieve a different column value / perform calculations between two row parameters (DateTime).  Below data table (also attached) has : Asset, DateTime, Discrete and Action columns . Data is sorted based on Asset first and then DateTime (ascending)There is also a Table variable days_threshold = 4.  Action(Desired) ...

    altug_bayram altug_bayram
    Discussions |
    Sep 26, 2022 9:45 AM
    5216 views | 10 replies
  • Dynamic Limit Graph

    I have a dataset 4 columns Index, Measurements, Lower and Upper Limits,I cant seem to figure out how to represent them in a single graph ...  Thanks

    Flavy Flavy
    Discussions |
    Sep 26, 2022 4:16 AM
    2327 views | 3 replies

Latest Discussions

  • merging values from 2 columns into one (mixed numeric and character values)

    Hi I have 2 columns, one containing numeric values, and one containing strings.I want to create a third column that takes the numeric value if the string value is 'parametric', and the string value if it's not. I tried this, but I'm getting an error "Column TEST_RESULT requires numeric values", although it's defined as Character type column.I'm using JMP15 if it matters. col_test_result =dt <<new ...

    shlomi_bakish shlomi_bakish
    Discussions |
    Sep 26, 2022 6:13 PM
    5557 views | 12 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
  • 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

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