cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.

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

  • Copying all values and column names from one table to another in jsl

    Hello, I am a JSL beginner.  I need the code to copy all existing values in one table as well as the column names and paste them into another newly created table.  This is probably super-simple, but after browsing the forum and google searching for awhile, I cannot find the exact answer.  My source table contains a few columns with pure data and a few columns with formulas involving simple math be...

    BladeRunner BladeRunner
    Discussions |
    Jun 9, 2022 2:17 PM
    3107 views | 2 replies
  • How to pass data from Select Where to array

    Hi, I'm trying to adapt this solution: https://community.jmp.com/t5/Discussions/Create-a-associative-array-from-unique-selected-rows-and-row/td-p/257860using Select Where instead of Select Rows.dt1 << Select Where( :Test == "Fail" );I would like to create an array of the columns Age and Class for all the selected rows. Selected Rows doesn't seem to work and the Script Index Guide isn't clear on wh...

    Agustin Agustin
    Discussions |
    Jun 9, 2022 7:19 AM
    1640 views | 4 replies
  • How to statistically compare a change between two curves with the change between two other curves.

    I have two stores. each store sends a notification when they make a sale. The notification specifies how many of a specific item were sold.Some days no notifications, other days several. For example store A send 45 notifications of total 78 items for January 2019, compared to 40 notifications of total 68 items for January 2020.I receive a monthly report of the notifications. I created a column wit...

    AlphaParrot8248 AlphaParrot8248
    Discussions |
    Jun 9, 2022 4:31 AM
    2494 views | 3 replies
  • row operations

    For(x=1,x<=N Rows(dt),x++, If(IsMissing(Column( dt, "Actual Finish Date_" )[x]), Column( dt, "bouge pas" )[x] = Column( dt, "Operation Due Date_" )[x] - :Operation Start Date_ [x-1], Column( dt, "bouge pas" )[x] = Column( dt, "Actual Finish Date_" )[x] - :Actual Execution Start Date_ [x] ); ); Hello, my problem is that I want in the first line of the for, the line x-1 for the co...

    NetflixCrow956 NetflixCrow956
    Discussions |
    Jun 9, 2022 4:16 AM
    2211 views | 5 replies
  • How to use JSL to save the screenshot of the specified area of the data table as a picture?

    For example, save the dt[1::10,1::5] screenshot as "C:\bs.png" Thanks! 

    lala lala
    Discussions |
    Jun 9, 2022 3:42 AM
    1501 views | 1 replies

Latest Discussions

  • How to statistically compare a change between two curves with the change between two other curves.

    I have two stores. each store sends a notification when they make a sale. The notification specifies how many of a specific item were sold.Some days no notifications, other days several. For example store A send 45 notifications of total 78 items for January 2019, compared to 40 notifications of total 68 items for January 2020.I receive a monthly report of the notifications. I created a column wit...

    AlphaParrot8248 AlphaParrot8248
    Discussions |
    Jun 9, 2022 4:31 AM
    2494 views | 3 replies
  • How to show 2 histograms based on date for the same data ?

    Hi I have a set of data for a variable starting on March 2021.But we did a modification on the process after May 2022I would like now to see the impact in the distribution before and after May 1st 2022How can I simply do this ? Thanks

    LogitTurtle576 LogitTurtle576
    Discussions |
    Jun 9, 2022 12:16 AM
    1312 views | 3 replies
  • When does JMP round probability to 1 or 0?

    This may be posted somewhere but I can't find it. I have used various distribution functions to determine the probability of a given number in a distribution for many different applications. Sometimes the value is so far off the distribution that the functions return 0 or 1. I was wondering what is the limit where JMP stops and rounds to 0 or 1. That way I can present it as a probability less than...

    shaunhunter shaunhunter
    Discussions |
    Jun 7, 2022 6:11 PM
    851 views | 1 replies
  • DOE outcome

    How do I analyze this question? I have DOE outcome but I have no idea what JMP information need to attach for this question.
    Please give some comment if anyone know about this.
    Thanks

    Maxrrard Maxrrard
    Discussions |
    Jun 7, 2022 7:06 AM
    1681 views | 4 replies
  • Cullen and Frey Graph

    Dear all,   would anyone of you know how to make the graph as in object?   Thanks you very much   Giuseppe

    GiuseppeC GiuseppeC
    Discussions |
    Jun 7, 2022 5:46 AM
    2479 views | 2 replies

Latest Discussions

  • 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
    631 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
    778 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
    999 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
  • How to create a graph builder box plot with mean values, and including the "group X" variable in the legend

    I'm using JMP 16.2.0 and I'm trying to automatically generate a graph builder with box plots and their mean values with the group X variable as the color. I'm using a bar chart with style=floating to display the mean value (inspired by this topic)My current graph:This is almost what I want, except for a few things.1. I'd like the Group X variable (Recipe) to be visible in the legend as well. One w...

    mvanderaa1 mvanderaa1
    Discussions |
    Apr 20, 2022 4:13 AM
    2521 views | 0 replies
view all discussions