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

  • CCD design optimization

    Is there a way to output a table of solutions from a CCD using the profile after fitting the reduced model? Or you can only select maximize desirability and get one result? i'm aware if you move around the starting point maybe the algo will find an alternate solution. I'm trying to get a table of outputs showing possible optimums within the response surface (an example from Minitab is attached). T...

    awelsh awelsh
    Discussions |
    Jan 13, 2025 7:24 AM
    2147 views | 4 replies
  • Mixture design with special constraints

    Good morning,

    The aim is to test mixtures of components to target a continuous variable Z.

    To achieve this, the blend must contain one (and only one) component from each of the following familly (these categories are made up of components with similar characteristics), plus glycerine (systematically):
    Family 1: A, B
    Family 2: C, D
    Family 3: E, F, G, H, I, J
    Family 4: glycerine

    Two intermediate continuous...

    Ed_F Ed_F
    Discussions |
    Jan 13, 2025 4:43 AM
    754 views | 2 replies
  • updating list inside a function

    Hey guys,I'm trying to add a new value (variable value) to a list inside a function, each time the function has been called.No matter what I tried, the list is not getting any value. Any advice? Adding the example of the code

    Stas Stas
    Discussions |
    Jan 12, 2025 9:18 AM
    524 views | 2 replies
  • Distance between two linear graph in specific domain

    Hello there,Let's say for exmaple I have two linear line that I want to measure the distance between them in specific domain.I've attched a scratch. The domain is the orange square. The distance between there is way smaller than the distance on X axis.
    How can I calculate it in JMP?

    Liranlev Liranlev
    Discussions |
    Jan 12, 2025 7:26 AM
    554 views | 1 replies
  • PI Importer Max Count lowered?

    Hey,I just noticed that with the "newer" PI importer it's possible to pass a list with AF paths instead of just one AF path.  But here's the problem: Why does the max count gets decreased with every PI tag more in the AF path list? Before with only a single PI tag I could get up to 1.000.000 rows but with every PI tag my old max count gets divided by the amount of PI tags. This is very sad, due to...

    Erik_The_First Erik_The_First
    Discussions |
    Jan 11, 2025 8:16 AM
    1083 views | 2 replies

Latest Discussions

  • CCD design optimization

    Is there a way to output a table of solutions from a CCD using the profile after fitting the reduced model? Or you can only select maximize desirability and get one result? i'm aware if you move around the starting point maybe the algo will find an alternate solution. I'm trying to get a table of outputs showing possible optimums within the response surface (an example from Minitab is attached). T...

    awelsh awelsh
    Discussions |
    Jan 13, 2025 7:24 AM
    2147 views | 4 replies
  • Mixture design with special constraints

    Good morning,

    The aim is to test mixtures of components to target a continuous variable Z.

    To achieve this, the blend must contain one (and only one) component from each of the following familly (these categories are made up of components with similar characteristics), plus glycerine (systematically):
    Family 1: A, B
    Family 2: C, D
    Family 3: E, F, G, H, I, J
    Family 4: glycerine

    Two intermediate continuous...

    Ed_F Ed_F
    Discussions |
    Jan 13, 2025 4:43 AM
    754 views | 2 replies
  • updating list inside a function

    Hey guys,I'm trying to add a new value (variable value) to a list inside a function, each time the function has been called.No matter what I tried, the list is not getting any value. Any advice? Adding the example of the code

    Stas Stas
    Discussions |
    Jan 12, 2025 9:18 AM
    524 views | 2 replies
  • Distance between two linear graph in specific domain

    Hello there,Let's say for exmaple I have two linear line that I want to measure the distance between them in specific domain.I've attched a scratch. The domain is the orange square. The distance between there is way smaller than the distance on X axis.
    How can I calculate it in JMP?

    Liranlev Liranlev
    Discussions |
    Jan 12, 2025 7:26 AM
    554 views | 1 replies
  • PI Importer Max Count lowered?

    Hey,I just noticed that with the "newer" PI importer it's possible to pass a list with AF paths instead of just one AF path.  But here's the problem: Why does the max count gets decreased with every PI tag more in the AF path list? Before with only a single PI tag I could get up to 1.000.000 rows but with every PI tag my old max count gets divided by the amount of PI tags. This is very sad, due to...

    Erik_The_First Erik_The_First
    Discussions |
    Jan 11, 2025 8:16 AM
    1083 views | 2 replies

Latest Discussions

  • Logistic regression - confidence bands.

       

    beimar_iriarte_ beimar_iriarte_
    Discussions |
    Jan 10, 2025 12:10 PM
    511 views | 0 replies
  • Exceptions are the utilities Show, Write, and Print ...

    from: https://www.jmp.com/support/help/en/18.1/?os=win&source=application#page/jmp/advanced-expressions-macros-and-lists.shtml#  If you assign the expression x+y to a, quoting it as an expression with Expr, then whenever a is evaluated, it evaluates the expression using the current values of x and y and returns the result.
    Exceptions are the utilities Show, Write, and Print, which do not evaluate e
    ...

    hogi hogi
    Discussions |
    Jan 7, 2025 10:44 PM
    490 views | 0 replies
  • Extract Expr: Issue with scoped variable

    This works: Extract Expr(:height << set name( "new" ), :height );  But this one doesn't *):Extract Expr(myDataTable:height << set name( "new" ), myDataTable:height );Fortunately there is this dirty trick of Extract Expr (it automatically resolves every defined variable **) - which allows this workaround:x = Expr( myDataTable:height); Extract Expr(myDataTable:height << set name( "new" ), x ) *) why...

    hogi hogi
    Discussions |
    Jan 7, 2025 11:35 AM
    396 views | 0 replies
  • A custom function evaluates the return value

    fyi While debugging @replace Head, I noticed that a custom function evaluates the return values +1x compared to a standard function:myFunction = function({}, return(Expr(3*5))); add custom functions (newcustom function("my custom", "function", function({}, return(Expr(3*5))))); Show(myfunction()); Show(my custom:function())so maybe add another Expr() ...add custom functions (newcustom function("m...

    hogi hogi
    Discussions |
    Jan 3, 2025 2:05 PM
    373 views | 0 replies
  • ods output "DIFFS" in proc mixed

    Hi everyone,for my proc mixed I already got a table with Least-Squares Means, ods output "lsmeans".Additionally, I would like to have a table for the differences, ods output “DIFFS”.Can anyone tell me how to get to this output in the current jmp version (18.1.0)?Thanks in advance for your support.

    lvierbaum lvierbaum
    Discussions |
    Dec 12, 2024 5:32 AM
    586 views | 0 replies
view all discussions