cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Couldn't install JMP Excel Add-in on Snapdragon X Elite laptop for both JMP17 and 18

    Was able to install and run both JMP17 and JMP18 on Snapdragon X Elite laptop. However, having issue installing JMP Excel add-in for both. The installation stalled at the following step (https://community.jmp.com/t5/JMP-Knowledge-Base/How-to-install-or-re-install-the-Excel-Add-in-for-JMP-when-the/ta-p/575299)  The installation options box now appears. Find the entry for the Excel Add-In and unchec...

    ILoveJMP ILoveJMP
    Discussions |
    Apr 30, 2025 5:02 PM
    601 views | 2 replies
  • P-values in ordinal logistic regression

    Hi All,   How are these P-values (Prob>Chisq) calculated? What hypothesis is it testing?

    ParametricHorse ParametricHorse
    Discussions |
    Apr 30, 2025 12:56 PM
    416 views | 1 replies
  • Adding explicit table reference in JSL code leads to unexpected results

    I have a short JSL script that I'm looking to add to a larger automated workflow. The intent is to iterate over the values in a column (layer_type) and if it finds any value other than SSOD the code should return 1. If all values in the columns are 'SSOD' then it should return 0. This is being used in a if/else split in a workflow to throw an error. In general if you have recommendations of a bett...

    Stefan_Moser Stefan_Moser
    Discussions |
    Apr 30, 2025 9:30 AM
    1085 views | 5 replies
  • How to make the background of images made by JSL transparent using python?

    I didn't succeed like this. Thanks! dt = Open("$SAMPLE_DATA/Big Class.jmp"); p1 = dt << Graph Builder( Show Control Panel(0), Variables(X(:height), Y(:weight), Overlay(:sex)), Elements(Points(X, Y, Legend(1)), Smoother(X, Y, Legend(2))) ); img = p1 << Get Picture; img_binary = img << Get Blob("PNG"); base64_img = Blob To Base64(img_binary); Python Send("base64_img", base64_img);...

    lala lala
    Discussions |
    Apr 30, 2025 7:17 AM
    1566 views | 9 replies
  • Spectral data + PLS-DA

    Hello everyone! I'm reaching out to see if someone can guide me through the basic steps for performing PLS-DA. Below is an example of the raw data table I'm using in order to construct the classification method. I'm working with spectral FTIR data, and my objective with the classification method is to see if I can classify samples according to the treatment they have received. When I proceed with ...

    Mariana_Aguilar Mariana_Aguilar
    Discussions |
    Apr 30, 2025 4:51 AM
    2161 views | 7 replies

Latest Discussions

  • Couldn't install JMP Excel Add-in on Snapdragon X Elite laptop for both JMP17 and 18

    Was able to install and run both JMP17 and JMP18 on Snapdragon X Elite laptop. However, having issue installing JMP Excel add-in for both. The installation stalled at the following step (https://community.jmp.com/t5/JMP-Knowledge-Base/How-to-install-or-re-install-the-Excel-Add-in-for-JMP-when-the/ta-p/575299)  The installation options box now appears. Find the entry for the Excel Add-In and unchec...

    ILoveJMP ILoveJMP
    Discussions |
    Apr 30, 2025 5:02 PM
    601 views | 2 replies
  • P-values in ordinal logistic regression

    Hi All,   How are these P-values (Prob>Chisq) calculated? What hypothesis is it testing?

    ParametricHorse ParametricHorse
    Discussions |
    Apr 30, 2025 12:56 PM
    416 views | 1 replies
  • How to make the background of images made by JSL transparent using python?

    I didn't succeed like this. Thanks! dt = Open("$SAMPLE_DATA/Big Class.jmp"); p1 = dt << Graph Builder( Show Control Panel(0), Variables(X(:height), Y(:weight), Overlay(:sex)), Elements(Points(X, Y, Legend(1)), Smoother(X, Y, Legend(2))) ); img = p1 << Get Picture; img_binary = img << Get Blob("PNG"); base64_img = Blob To Base64(img_binary); Python Send("base64_img", base64_img);...

    lala lala
    Discussions |
    Apr 30, 2025 7:17 AM
    1566 views | 9 replies
  • correlation map with categorical and numerical factors

    I have several dataset to analyze. I know how to do a color correlation map with numerical factors in JMP but I do not know how to do a correlation map with categorical and numerical factors. That would be very useful because correlation maps are a compact way to analyze and present a lot of information, especially when there are many factors.  How can I generate a correlation map with categorical...

    DBM_860752 DBM_860752
    Discussions |
    Apr 29, 2025 9:09 AM
    723 views | 2 replies
  • How to constrain asymptotes in 4PL Hill curve fit?

    New user of JMP, running JMP18 and know how to perform basic 4PL fitting. 4PL Fitting is extremely important in many biological assays and we often need to set values of upper or lower asymptote when fitting incomplete IC50 curves with 4PL analysis. Using the 4P Hill fitting equation, is there a way to constrain the asymptotes within graph builder without having to create a custom model? Thank you...

    CriticalIguana6 CriticalIguana6
    Discussions |
    Apr 29, 2025 7:25 AM
    690 views | 2 replies

Latest Discussions

  • Help with Multiple Linear Regression

    LogitParrot179 LogitParrot179
    Discussions |
    Apr 23, 2025 7:58 PM
    545 views | 0 replies
  • when does model reduction lead to the problem of multiple comparisons?

    My interest is in identifying the strongest predictors of annual per capita growth rate for three groups of bird species: residents, short-distance migrants and long-distance migrants.  My model has per capita growth rate as the dependent variable, and as predictors bird density during the breeding season, and 13 environmental predictors (various measures of climate, food abundance and nest predat...

    olddabbler olddabbler
    Discussions |
    Apr 21, 2025 5:56 AM
    517 views | 0 replies
  • steps to use the minimum p-value approach with log-rank test?

    I am interested in applying the minimum p-value approach using the p-values obtained from the log-rank test. However, I am uncertain about the specific steps involved. Could you kindly advise me on how to proceed?   I am currently using the following version: JMP® Student Edition 18.2.0, running on Microsoft Windows 11 Home.

    Namamugi Namamugi
    Discussions |
    Apr 10, 2025 11:22 PM
    496 views | 0 replies
  • Scale IDs in Add Graphics Script not working

    I created a script to draw graphs from JSON objects, which works well, but when I tried to overlay one graph on another using two Y axes, I could not get it to work; it always used the left Y axis.  I thought I was doing something wrong, but I finally realized that even the example in the Scripting Guide does not work as it should.  This example is supposed to use the right Y axis, labeled "Test,"...

    mmarchandFSLR mmarchandFSLR
    Discussions |
    Mar 27, 2025 5:13 AM
    379 views | 0 replies
  • Discovery summit book signings - official list of books?

    Fellow JMP enthusiasts! During the 2024 Manchester Discovery Summit I was surprised to learn that the handing out and signing of books is a tradition. So, I am wondering whether there is a list of the books handed out & signed so far. If it exists, where to find it?I thoroughly enjoyed reading "Bitch" by Lucy Cooke, and I have a feeling "Hello World" by Hannah Frey will be a good read too.

    Ressel Ressel
    Discussions |
    Feb 28, 2025 11:25 AM
    435 views | 0 replies
view all discussions