cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.

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

  • How to use JSL how to modify decimal numbers to binary data in this format?

    Hello!How to use JSL how to modify decimal numbers to binary data in this format?Thanks!000903 999999   

    lala lala
    Discussions |
    Jul 10, 2022 7:12 AM
    2839 views | 9 replies
  • Fill Data Table Columns with Sequential Data

    Hello,a newbie question:Is there an option to use the "Fill" option with the sequential character ordinal data?Currently the sequence of Character data is only repeated, and is not continued.For example, I write "User 1", "User 2", "User 3", and want to continue the sequence till the end of the table (100 rows)
    if I highlight the data I've entered and choose the "Fill to end of table", i get the re...

    LambdaCapybara4 LambdaCapybara4
    Discussions |
    Jul 10, 2022 4:33 AM
    1868 views | 3 replies
  • How to add new column to all data tables

    I have a series of experiments which produce a text file of results, titled with the name of the sample.I have a script that takes the data table title and populates a new "sample name" column with the title.dt = current data table(); name = dt << get name; new column("Sample Name"); column(dt,"Sample Name")[1]=name;
    nr = N Rows( dt ); For( ii = 2, ii <= nr, ii++, If( is missing(Column( dt, "
    ...

    HarriBradbeer HarriBradbeer
    Discussions |
    Jul 9, 2022 8:15 AM
    1605 views | 4 replies
  • Creating an Interactive Pareto Plot with interactive Slider Boxes to update column formula

    I have a set of specifications that a product in production would need to pass. I have a column with a formula that specifies the values needed (Limits) by each specification, and creates a binary pass/fail. This formula is used to create a Pareto Graph of passing number and percentage. I want to create an interactive Pareto Graph with slider boxes to adjust the testing limits, and see how changin...

    JMewborn JMewborn
    Discussions |
    Jul 8, 2022 6:26 AM
    6237 views | 12 replies
  • How can I perform a inverse prediction across several models according to their specification limits

    Dear JMP community, I need your help. Based on a DoE analysis I have investigated the impact of 6 input-parameters/factors, their interaction effects and quadratic effects on 30 different output-parameters. Hence, I have created 30 models in the fit model plattform. Each of these 30 output-parameters has certain specification limits. I have to evaluate the range for each input-parameter which lead...

    Marco_ Marco_
    Discussions |
    Jul 8, 2022 1:30 AM
    1396 views | 2 replies

Latest Discussions

  • How to use JSL how to modify decimal numbers to binary data in this format?

    Hello!How to use JSL how to modify decimal numbers to binary data in this format?Thanks!000903 999999   

    lala lala
    Discussions |
    Jul 10, 2022 7:12 AM
    2839 views | 9 replies
  • Fill Data Table Columns with Sequential Data

    Hello,a newbie question:Is there an option to use the "Fill" option with the sequential character ordinal data?Currently the sequence of Character data is only repeated, and is not continued.For example, I write "User 1", "User 2", "User 3", and want to continue the sequence till the end of the table (100 rows)
    if I highlight the data I've entered and choose the "Fill to end of table", i get the re...

    LambdaCapybara4 LambdaCapybara4
    Discussions |
    Jul 10, 2022 4:33 AM
    1868 views | 3 replies
  • How to add new column to all data tables

    I have a series of experiments which produce a text file of results, titled with the name of the sample.I have a script that takes the data table title and populates a new "sample name" column with the title.dt = current data table(); name = dt << get name; new column("Sample Name"); column(dt,"Sample Name")[1]=name;
    nr = N Rows( dt ); For( ii = 2, ii <= nr, ii++, If( is missing(Column( dt, "
    ...

    HarriBradbeer HarriBradbeer
    Discussions |
    Jul 9, 2022 8:15 AM
    1605 views | 4 replies
  • Uninstall JMP PRO 16 silently

    Hi,I want to uninstall JMP PRO 16 silently, i have tried with the below command but it is not working, looks like this stuck because of below pop up message    "C:\Program Files (x86)\InstallShield Installation Information\{61DF41B1-9877-4906-80C4-09941A05BD77}\setup.exe" -runfromtemp -l0x0409 -removeonly /s

    Aki Aki
    Discussions |
    Jul 8, 2022 12:57 AM
    4065 views | 2 replies
  • Custom Date Format in JSL Script (For Query Builder)

    Overall Goal: Create a query in Query Builder that filters on a date time column only pulling data from the last 7 days of the current time. I am trying to use a custom expression in Query Builder to do this. Ideally it would just be the following in the custom expression filter but it results in no data pulled. t1.TimeCol >= format((Today() - InDays(7)), "m/d/y h:m:s") It appears Query Builder ta...

    bittnere bittnere
    Discussions |
    Jul 7, 2022 11:13 PM
    2799 views | 2 replies

Latest Discussions

  • Urgent: covariance parameter estimates are all zero (i.e. estimate, Std error, confidence interval)

    Dear All,I have been analysing a two factorial (3*4) RCBD repeated measures design by using the mixed model approach in JMP. Above is a section of the report I got. Why are the estimates zero. Other information include about the analysis include:1. 14 continuous variables measured four times at unequal time periods2. All the three covariance structures I tried (AR1, Toeplizt and spatial power) had...

    MomentMonster90 MomentMonster90
    Discussions |
    Jun 13, 2022 5:53 AM
    782 views | 0 replies
  • Validate column values (make sure all values in column follow a specific pattern)

    Is there a better way rather than iteration of all the rows to validate values in column? Let's say before making something with the column I want to make sure that all values in column match specific Regex. Like so:!IsMissing(Regex(Column(myColumn)[1], "^\w+(\d{3})\w+$", "\1"))I can iterate through each row to make sure that all of them match, but maybe there is a better way?  

    miguello miguello
    Discussions |
    May 6, 2022 11:09 AM
    628 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
    773 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
    995 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
    701 views | 0 replies
view all discussions