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

  • Is it possible to execute a script by clicking a curve in the graph via JSL?

    For example, I made a graph of the script below.dt = Open( "$SAMPLE_DATA/Students2.JMP" ); dt << Sort( By( 1 ), Order( Ascending ), replacetable( 1 ) ); New Column( "A" ); Column( "A" ) << Formula( If( Row() == 1 | name != Lag( name, 1 ), 1, If( Lag( A, 1 ) < 6, Lag( A, 1 ) + 1 ) ) ); dt << run formulas; Column( "A" ) << deleteFormula; dt << Sort( By( "A" ), Order( DEscending ), replacetable( 1 ) ...

    lwx228 lwx228
    Discussions |
    Dec 6, 2021 3:18 AM
    2338 views | 7 replies
  • How I can separate number and character in cell in JMP

    Hi ,I have question about JMP , I have column with numbers (0) and letters so I need to create new column and using formula include only the letters and delete all (0) ! so is it possible to do that in JMP ? and which function I should use ?I tried (word) function but it does not work with me! Here the column :and I want something like this : Thanks

    Balqees Balqees
    Discussions |
    Dec 5, 2021 8:28 AM
    1428 views | 2 replies
  • Formatting Asian dates to short dates

    Many companies in Asia type their dates different from that in USA. For example, 3rd Dec. 2021, Asian companies will type it as 03/12/2021 but in USA we type it as 12/03/2021. I have a table which I parse out the dates and convert it into short dates. But the circle ones are wrong, see below image. I used the code below. How do I let JMP know that the dates extracted from the Text column are in th...

    cchueng cchueng
    Discussions |
    Dec 4, 2021 4:41 AM
    3117 views | 7 replies
  • Interpolation contour map: Based on Z1( x1, y1), Z2( x2,y2), to interpolate Z3(x3,y3)

    Jmp has a contour map to use certain algorithm to interpolate results, based on Z1( x1, y1), Z2( x2,y2) to calculate Z3 (x3,y3). For example below 3 column, if we know the x,y, and its corresponding height, how can we calculate the height at (2,2)?Is there a script for doing this type of interpolation? Thanks X, Y, Height1,1, 101,2,321,3, 132,1,232,2, ??2,3, 443,1,233,2,113,3,42

    Stokes Stokes
    Discussions |
    Dec 3, 2021 4:13 PM
    1083 views | 1 replies
  • How to get nonlinear fit parameters back to data table

    Hi,I have used the nonlinear platform interactively to fit and estimate the parameters Max and k in a formula column as below. I would like to get the estimates back to the data table to use in other formula columns. I have searched, but not been able to figure out how to access them outside the column where the formula resides. I tried Save estimates to table, which gets them into a new separate ...

    Ake Ake
    Discussions |
    Dec 3, 2021 9:42 AM
    2043 views | 4 replies

Latest Discussions

  • Is it possible to execute a script by clicking a curve in the graph via JSL?

    For example, I made a graph of the script below.dt = Open( "$SAMPLE_DATA/Students2.JMP" ); dt << Sort( By( 1 ), Order( Ascending ), replacetable( 1 ) ); New Column( "A" ); Column( "A" ) << Formula( If( Row() == 1 | name != Lag( name, 1 ), 1, If( Lag( A, 1 ) < 6, Lag( A, 1 ) + 1 ) ) ); dt << run formulas; Column( "A" ) << deleteFormula; dt << Sort( By( "A" ), Order( DEscending ), replacetable( 1 ) ...

    lwx228 lwx228
    Discussions |
    Dec 6, 2021 3:18 AM
    2338 views | 7 replies
  • Interpolation contour map: Based on Z1( x1, y1), Z2( x2,y2), to interpolate Z3(x3,y3)

    Jmp has a contour map to use certain algorithm to interpolate results, based on Z1( x1, y1), Z2( x2,y2) to calculate Z3 (x3,y3). For example below 3 column, if we know the x,y, and its corresponding height, how can we calculate the height at (2,2)?Is there a script for doing this type of interpolation? Thanks X, Y, Height1,1, 101,2,321,3, 132,1,232,2, ??2,3, 443,1,233,2,113,3,42

    Stokes Stokes
    Discussions |
    Dec 3, 2021 4:13 PM
    1083 views | 1 replies
  • Share JSL scripts but avoid unintentional tinkering of the scripts

    I have prepared a bunch of JSL scripts (on JMP 13) which are designed to pull test data from the database and generate a journal report.There is a main script and there are other other scripts and functions which the main script and other scripts call.I would like to share my scripts to other JMP users in my group so that they can run the main script to generate the necessary journal reports. Howe...

    Neo Neo
    Discussions |
    Dec 3, 2021 7:32 AM
    1427 views | 4 replies
  • 如何能不用循环的方式求出结果?

    例如按身高的数值大于63的堆数:   这个堆数是指:当相邻行数连续大于63时计数为1、这样计数应该是有 8  这个用循环的方式能得到结果、请教是否还有其它方式可以得到结果。谢谢!  

    lala lala
    Discussions |
    Dec 2, 2021 7:14 PM
    1737 views | 3 replies
  • Check if table exist on sql db

    Hello,   I am running some jmpquery on different SQL DB. Because some DB do not have the same tables,  I getting the error: Tables (public.table1(t1)) referenced in the SQL Query were not found in the database{1} in access or evaluation of 'Table' , Table( "table1", Schema( "public" ), Alias( "t1" ) ) /*###*/   How could I check if a table exists on a SQL DB before running a query ?    Thanks Geof

    geoff1 geoff1
    Discussions |
    Dec 2, 2021 11:27 AM
    2450 views | 4 replies

Latest Discussions

  • Permutation Tests and Monte Carlo Cross Validations Using the Simulation Platform

    I'm trying to do permutation tests and Monte Carlo Cross Validations with the Iris sample dataset as a MWE for our dataset. I'm not sure if I'm doing things and interpreting output correctly.   1) Create New Formula Column (Random->Sample Without Replacement) for the Species Column for Permutation Test. 2) Create a Validation Column (0.75/0.25 split) and a new Formula Column (Random->Sample Withou...

    mjmg mjmg
    Discussions |
    Dec 1, 2021 7:53 AM
    893 views | 0 replies
  • Content Mentions Demo

    @IanAtJMP  wrote the article Notification Settings: An Overview and here are some keywords from a post Images in Notification Emails 

    jmp_demo jmp_demo
    Discussions |
    Nov 22, 2021 8:01 AM
    638 views | 0 replies
  • DoE with two-choice experiments, continuous response variable

    We want to rank the preference  of population of animals for n different recipes. Recipes are tested in two-choice assays, where groups of over 100 individuals can choose one choice or the other. Preference for the group is computed as a preference index, a continuous variable that is between -1 and 1. Is there an experimental design that would help reduce the number of combinations to test in ord...

    Alexa_Guigue Alexa_Guigue
    Discussions |
    Nov 19, 2021 7:06 AM
    732 views | 0 replies
  • Can I share dashboard with specific person in JMP Public?

    Hi, I would like to share my dashboard in JMP Public. However, there are only two choices: "only share with me" and "share with everyone". Is there anyway to share with specific persons? Thanks.

    lujc07 lujc07
    Discussions |
    Nov 9, 2021 7:41 AM
    743 views | 0 replies
  • Changing axis scale with superscripts

    I'm wondering how to change my axis scale with superscripts. I am using unicode font to write the superscripts but I am having trouble applying the superscripts to my axis. I want the minimun to be 10⁻¹⁰ and maximum to be 10⁻³. I have attached scrrenshots below of what I'm stuck on. I'm thinking I need to use a custom format but I can't figure it out. Y axis scale needs to be LOG.   

    hannahmcnamara hannahmcnamara
    Discussions |
    Nov 7, 2021 1:02 PM
    643 views | 0 replies
view all discussions