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 can I calculate Pooled Variance Estimate in JMP?

    Hello JMP Community, How can I calculate Pooled Variance in JMP? I am hoping, as with all things JMP, this exists and I have just not found the magic pathways to produce the desired results quickly and efficiently.  I can of course do this by going through the actual maths myself, but I have frequently run into this situation so it would be great to learn if this already exists in JMP. I have a da...

    WanderedProcess WanderedProcess
    Discussions |
    Nov 29, 2018 7:22 AM
    9462 views | 2 replies
  • How do I select all rows below a specific value?

    Hello, Is there a way in JSL to select all rows below a specific value in a column? The tricky part is that I know what the specific value is but I won't know which row it is on or what values may fall below it in the data table. In my Example Data Table, I would like to select where Column 3 == "B" and all subsequent rows. After running the script, rows 4 through 15 should be selected. Keep in mi...

    Raquel Raquel
    Discussions |
    Nov 29, 2018 6:21 AM
    6773 views | 2 replies
  • How to abort script and show error message if save file fails?

    Hi,I made a script that converts JMP to a csv file and saves it to network PCs using their IP address.dt = Current Data Table(); ToolID = {"G01", "G02", "G03", "G04"}; IP_add = {"10.87.123.456", "10.87.123.789", "10.87.456.789", "10.87.789.123"}; current_pref = Char( Arg( Parse( Char( Get Preferences( Export settings ) ) ), 1 ) ); Pref( Export Settings( End Of Field( Comma ), Export Table Headers(...

    shaira shaira
    Discussions |
    Nov 28, 2018 3:50 PM
    10760 views | 5 replies
  • How to extract month in words from a date value & how to change the default marker for outliers?

    Hi everyone.1.) How can I extract the month in words from a date value for an entire column?
    Say cell # 1 has the date "03/19/2009". I would like the next column to get the month - "March", in this example.2.) Is there a way to change the default marker for outliers - like globally make the outlier markers an outlined-triangle?
    Appreciate the help.

    rabelardo rabelardo
    Discussions |
    Nov 28, 2018 1:14 PM
    21427 views | 8 replies
  • Automatically selecting outliers

    I have 7000 rows, that consists of multiple batches.   I am doing a distribution by batch and using the outlier box plot to look for outliers.  But I have 100+ batches, is there a way to have JMP automatically select which rows are outliers? 

    lmaley lmaley
    Discussions |
    Nov 28, 2018 1:10 PM
    20629 views | 24 replies

Latest Discussions

  • How to abort script and show error message if save file fails?

    Hi,I made a script that converts JMP to a csv file and saves it to network PCs using their IP address.dt = Current Data Table(); ToolID = {"G01", "G02", "G03", "G04"}; IP_add = {"10.87.123.456", "10.87.123.789", "10.87.456.789", "10.87.789.123"}; current_pref = Char( Arg( Parse( Char( Get Preferences( Export settings ) ) ), 1 ) ); Pref( Export Settings( End Of Field( Comma ), Export Table Headers(...

    shaira shaira
    Discussions |
    Nov 28, 2018 3:50 PM
    10760 views | 5 replies
  • Logit Regression Help

    I am trying to run a Logit Regression and it has to include a column called "validation" which is just one of two words (half the data points are word type, the other half are another) so it comes up on JMP as nominal. What do I do? Thanks. The data is attached, choice is the dependent and all of ther other variables should be the predictors (including validation column).  

    ryanstar123 ryanstar123
    Discussions |
    Nov 27, 2018 5:51 PM
    8438 views | 6 replies
  • transfer/share JSL with other code languages

    Has anyone developed/found a way to convert/share/"compile" JSL into something usable by other languages? Here is my problem. As the developer of the initial code in R&D, I want a way to be able to give researchers code/tools that meet their needs and work with there existing analysis structure (JMP). However, some of these tools get merged into larger suites (for operations/QC, etc) where an exis...

    nathan-clark nathan-clark
    Discussions |
    Nov 26, 2018 10:06 AM
    5797 views | 3 replies
  • ANOVA fit model

    hiI am comparing yield of three varieties of potatoes, variety A has 10 samples, variety B has 5 samples and varietry C has 20 samples. So sample number (replications) are not even. I want to perform ANOVA using fit model. I have created three comuns Variety, sample#, and yield.So, yield (continuous) is the response factor. In the constrct model, do I have to include only varietry (nminal) or both...

    manphoolfageria manphoolfageria
    Discussions |
    Nov 23, 2018 5:32 PM
    3562 views | 1 replies
  • Shelf life Prediction of Pharmaceuticals by using Modified Arrhenius equation

    Hi, Can someone help me fit this equation Ln k = Ln A - Ea/(RT) + B(%RH) in JMP file. we have a set of data as attahced. Is there any way in JMP that this data fits into the above equation adn extrapolate the value at 25°C for 2 years. Thanks in advance.

    ParsaKarthik ParsaKarthik
    Discussions |
    Nov 23, 2018 9:18 AM
    4701 views | 1 replies

Latest Discussions

  • I want to use LASSO and Group LASSO in JMP

    I'm involved in a project where we are applying lasso to build a logistic regression model from a "black box" set of predictors.  I need to get JMP Pro before trying out JMP's implementation.  I'm doing all the analysis in R at present.  Does JMP Pro also include group lasso?  I've found through using JMP Cluster Variables (CLUSVAR) that I can naturally group my predictors prior to group lasso.  F...

    gene gene
    Discussions |
    Nov 2, 2018 7:43 AM
    2557 views | 0 replies
  • Contingency table and mosaic plot are not same orientation

    // For a contingency table report, swap the x and y // currently can swap the mosaic plot only Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); myr = Contingency( Y( :Age ), X( :sex ) ); // Have to have a Contingency Analysis report open // Can add test to make sure it is open in the future myr = Current Report(); // taking apart CrossTabBox was easier using XML than JSL ...

    Vball247 Vball247
    Discussions |
    Oct 29, 2018 2:18 PM
    3234 views | 0 replies
  • how to change the type and color of lines in graph

    I am trying to show line of fit in graph builder for several sets of data. The data table have many columns, I want to show the column(i) vs column(1).Every column can  be grouped by A1 & a, also can  be grouped by B1 & b, but except column(1). The follow is the chart about column(2) vs column(1):  I use the follow script to change the type of lines:Dispatch( {}, "400", ScaleBox, {Legend Model( 8,...

    Yu Yu
    Discussions |
    Sep 25, 2018 2:34 AM
    3637 views | 0 replies
  • Mean separation letter from test slices

    Hello!

    How do I get the mean separation letter in for each level of a factor when interaction is significant? For example, if I have A*B interaction and I want to get the mean separation of B at each level of A, how do I get the LSD letters in JMP? I can do test slices and that will use the DF of the full analysis, but this does not shows which mean of B differs. If I do multiple comparison: How ca...

    jfranc19 jfranc19
    Discussions |
    Sep 14, 2018 2:35 PM
    2460 views | 0 replies
  • repeated-measures ANCOVA: How to perform the analysis when the parallel slope assumpt. doesn't meet?

    Hi all,I need to perform the ANCOVA for a repeated-measures design. I tried to adapt the Julian's ANCOVA procedure showed on the https://www.youtube.com/watch?v=mApbp1RDy-U to my study case (repeated-measures design). Initially, I did the following actions: 1. In the Fit Y by X dialogue: I selected VAR_Y as "Y, Response" and VAR_X as "X, Factor";2. For "Group by" I selected the variable Timepoint;...

    Reinaldo Reinaldo
    Discussions |
    Jun 18, 2018 6:31 AM
    3434 views | 0 replies
view all discussions