cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Learning Resources

Latest Discussions

  • Having multiple graphs in one window

    Hi,I have a question on multiple graphs in one window (not in graph builder).I'd like to have multiple line graphs having each x- and y-axis (like below figure - actually 3 columns&4 rows) - Actually this type of graphs can be generated using 'Fit Y by X' mode. However, it cannot draw lines like this. I remember that "V List Box" or "H List Box" option in scripts could do this. However, I can't re...

    parkmintae72 parkmintae72
    Discussions |
    Jan 14, 2024 7:17 AM
    2163 views | 2 replies
  • How to Overlay scatterplot of data pairs with separate axes

    I have 7 data sets each with two columns ([Wavelength] and [Absorbance]) comprising continuous numeric data types. I want to overlay the 7 scatter plots showing [Wavelength] on the x-axis and [Absorbance] on the y-axis. Each pair has its own [Wavelength] data interval and range. Currently it is all in the same table (so 14 columns) but I am happy to rearrange data if that is necessary. Please advi...

    Momentum Momentum
    Discussions |
    Jan 12, 2024 12:57 PM
    2688 views | 3 replies
  • Load .NET dll and call a function in JSL

    Hi I am very beginner of JSL and am trying to create a JMP application for our team.To do this, I realized that I have to load c# dll to the JSL and call a function from there. I have read the part of DLLs in JMP scripting guide but I am not so sure this can be applied for .NET dll.Does anyone have an experience of loading .NET dll and calling a function from there in the JSL?

    ejesjh ejesjh
    Discussions |
    Jan 12, 2024 7:40 AM
    1859 views | 1 replies
  • Nested Try statement

    I am trying to run a script similar to the following: Try(        dt1 = Open(path1);        Try(                dt2 = Open(path2);                dt2 << Concatenate(dt1, "Append to first table");                ,               dt2 = dt1 << Subset(All rows);              );        dt2 << Save(path2);        ,        print("No dt1 found!"); ); But, when it fails to open dt2, instead of ex...

    bbenny7 bbenny7
    Discussions |
    Jan 12, 2024 3:06 AM
    858 views | 1 replies
  • JMP yield % not matching with Power BI and Excel

    Hi All, Good Day.Refer below tables showing the gaps between excel, power BI and the JMP with the same set of raw data (JMP % mostly not comparable to Excel and power BI). I hv attached the raw JMP file as well. Could anyone advice how to make JMP yield % is comparable to excel and Power BI. I am using ver 17. tks MonthlyExcel YieldPower BI YieldJMP Yield (Ave)Delta %in  JMPJan98.79%98.79%98.26%-0...

    Senguttuvan Senguttuvan
    Discussions |
    Jan 12, 2024 1:46 AM
    1651 views | 3 replies

Latest Discussions

  • How to Overlay scatterplot of data pairs with separate axes

    I have 7 data sets each with two columns ([Wavelength] and [Absorbance]) comprising continuous numeric data types. I want to overlay the 7 scatter plots showing [Wavelength] on the x-axis and [Absorbance] on the y-axis. Each pair has its own [Wavelength] data interval and range. Currently it is all in the same table (so 14 columns) but I am happy to rearrange data if that is necessary. Please advi...

    Momentum Momentum
    Discussions |
    Jan 12, 2024 12:57 PM
    2688 views | 3 replies
  • Load .NET dll and call a function in JSL

    Hi I am very beginner of JSL and am trying to create a JMP application for our team.To do this, I realized that I have to load c# dll to the JSL and call a function from there. I have read the part of DLLs in JMP scripting guide but I am not so sure this can be applied for .NET dll.Does anyone have an experience of loading .NET dll and calling a function from there in the JSL?

    ejesjh ejesjh
    Discussions |
    Jan 12, 2024 7:40 AM
    1859 views | 1 replies
  • JMP yield % not matching with Power BI and Excel

    Hi All, Good Day.Refer below tables showing the gaps between excel, power BI and the JMP with the same set of raw data (JMP % mostly not comparable to Excel and power BI). I hv attached the raw JMP file as well. Could anyone advice how to make JMP yield % is comparable to excel and Power BI. I am using ver 17. tks MonthlyExcel YieldPower BI YieldJMP Yield (Ave)Delta %in  JMPJan98.79%98.79%98.26%-0...

    Senguttuvan Senguttuvan
    Discussions |
    Jan 12, 2024 1:46 AM
    1651 views | 3 replies
  • Analyzing pH Data

    Hello- I am reviewing the attached pH/lot data set and I have a few goals I want to achieve. Could anyone help me with determining the best tests to run in JMP? Thank you!! 1. My pH specification is 6.5-7.1. Based on the results that I have gathered per lot, can I statistically justify changing my lower specification limit to 6.0? and if I cant, what would an acceptable lower limit be based on my ...

    VariancePony864 VariancePony864
    Discussions |
    Jan 11, 2024 7:35 AM
    1233 views | 2 replies
  • query in topic modelling

    how to find coherence values in topic modeling. Moreover how to plot topic proportion and and publication years in text explorer option 

    FrequencyBeetle FrequencyBeetle
    Discussions |
    Jan 11, 2024 4:20 AM
    511 views | 0 replies

Latest Discussions

  • query in topic modelling

    how to find coherence values in topic modeling. Moreover how to plot topic proportion and and publication years in text explorer option 

    FrequencyBeetle FrequencyBeetle
    Discussions |
    Jan 11, 2024 4:20 AM
    511 views | 0 replies
  • Copy Columns - selected rows

    Copy Columns from the right-click context menu of a column header is very useful. Just copy the column(s)  - with all the settings ... and paste it into a JSL script - or another table. There is a hidden feature:
    When rows are selected, the values of the selected rows are used as arguments of the Set Values() command and will populate the cells of the new column. So, when you select all rows before...

    hogi hogi
    Discussions |
    Jan 3, 2024 1:27 PM
    907 views | 0 replies
  • Documentation for Promise/async http requests

    Hi, I was wondering if anyone knows of any documentation for Promise objects. So far I am finding fairly little in the scripting index or at https://www.jmp.com/support/help/en/17.2/index.shtml. I am currently working from the Send documentation, which gives an example and demonstrates that you can use `<< On Response` and `<< On Error`, but not what else, if anything you can do with a Promise obj...

    mat-ski mat-ski
    Discussions |
    Dec 22, 2023 9:45 AM
    581 views | 0 replies
  • Nonlinear platform - trial values from table with large number of categories

    Hello - I have a large number of categories for each parameter when using the nonlinear platform. Basically, one category per row. Is there a way to have a table of values to load into the parameters? Because with the time its taking to one by one type and click, type and click the values in with the control panel, it might be faster to go back to Matlab at this point, which I very much don't want...

    ehchandlerjr ehchandlerjr
    Discussions |
    Dec 18, 2023 2:50 PM
    495 views | 0 replies
  • Sphericity test not performed due to insufficient error degrees of freedom

    Hi,I have Heart rates from 3 different groups collected at 7 times differents points. I would like to perform a repeated measures ANOVA. To do so, I would like to check sphericity assumption. I found online that you have to split your data and then Analyze > fit model, I add my 7 times in "Y" then Group in "Construct model effects", then Personality "Manova", Run. I checked “Univariate Tests Also”...

    ClassMegalodon6 ClassMegalodon6
    Discussions |
    Dec 14, 2023 2:54 AM
    841 views | 0 replies
view all discussions