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

  • Prioritization of Yield Detractors

    Besides the question is in spec(value) --- for a single parameter.
    If there are several parameters with spec limits there could be sets  with multiple spec violation (fail A, fail A+B , fail A + K ... fail K, pass) ... is there a possibility to define a prioritization of yield detractors in JMP? device 1 failed due to spec A - subsequent spec's do not have to be tested anymore.
    ->  In total x% of th...

    hogi hogi
    Discussions |
    Feb 6, 2025 11:36 AM
    3767 views | 14 replies
  • Find and extract an expression argument with a given expression head

    I want to write an efficient script that will take as an input a JSL expression and:Find an argument in that expression that has a specific expression headSubstitute that argument with a modified version of that argument Example: I have this expression my_expr=Expr(
    Fit Model( Y( :y ), Effects( :Drug, :x ), Personality( "Standard Least Squares" ), Emphasis( "Effect Leverage" ), Run( :y << {S
    ...

    MathStatChem MathStatChem
    Discussions |
    Feb 6, 2025 11:13 AM
    946 views | 6 replies
  • Use Regex to Replace Spaces In a Table Column

    I have a table column that contains a variable quantity of spaces in each cell.  I want to collapse those to a single space.  I presume regex can eliminate those but I've never applied regex outside a column formula.  Is this even the best approach and if so, how do I achieve it?

    SpannerHead SpannerHead
    Discussions |
    Feb 6, 2025 10:20 AM
    502 views | 1 replies
  • DoE Optimise a ratio of two factors

    I currently have a material made using 100% of expensive factor A. I want to replace some of A with cheaper factor B but I'm not sure what the optimal ratio would be to achieve the same performance when using 100% of factor A. I believe I need a minimum of 50% factor A.  How could I design a series of experiments using JMP (pro 18) that try to optimise this ratio so I can remove most of the expens...

    DeepDormouse199 DeepDormouse199
    Discussions |
    Feb 6, 2025 10:02 AM
    772 views | 4 replies
  • How to parse Design Role property with a script

    I need to be able to identify which columns in a DOE data table are factors. I know there is a design role column property.column(dtDOE, 1) << get property("Design Role");The problem is that the return value seems to be an unevaluated expression.DesignRole( Continuous )Is Missing doesn't work in this context, but even if it did, I want to exclude blocking factors, so I need to somehow parse this t...

    Mittman Mittman
    Discussions |
    Feb 6, 2025 8:06 AM
    601 views | 2 replies

Latest Discussions

  • DoE Optimise a ratio of two factors

    I currently have a material made using 100% of expensive factor A. I want to replace some of A with cheaper factor B but I'm not sure what the optimal ratio would be to achieve the same performance when using 100% of factor A. I believe I need a minimum of 50% factor A.  How could I design a series of experiments using JMP (pro 18) that try to optimise this ratio so I can remove most of the expens...

    DeepDormouse199 DeepDormouse199
    Discussions |
    Feb 6, 2025 10:02 AM
    772 views | 4 replies
  • Stability Analysis Course - commercial batches

    Hello everyone,   I am taking a Stability Analysis Course of JMP (https://community.jmp.com/t5/Stability-Analysis/Stability-Analysis-Course/ta-p/703300)  in order to perform a stability data analysis and identify trends. In one of the course exercises, I came across a table (Attached to the message) that includes columns for slope and confidence/ tolerance interval boundaries. I would like to cre...

    Bar2024 Bar2024
    Discussions |
    Feb 6, 2025 7:00 AM
    1227 views | 4 replies
  • I am very new user to JMP. Can you explain this function for me?

    I am very new to the JMP program and I was assigned to translate this code into Python. I don't understand what is this function used for so I can't completely convert the code to Python.

    col_string = ":FPC 1,:FPC 2,:FPC 3,:FPC 4,:FPC 5,:FPC 6,:FPC 7,:FPC 8,:FPC 9,:FPC 10"; // generate and evaluate a string that defines the Gen Reg Model for all FPCs Eval( Parse( "GenRegFit = dT << Fit Mod...

    LinkageAntelope LinkageAntelope
    Discussions |
    Feb 6, 2025 6:24 AM
    485 views | 2 replies
  • how to Define different data formats per JMP JSL

    I have two columns in the file, one column is the parameter name, the second column is the parameter value, I want to confirm whether JMP can make a definition: different parameter names corresponding to the parameter value has a different numerical format. For example: the parameter name is TTV is an integer format, and the parameter name is CARRIER CONCENTRATION and RES is a scientific notation.

    wenwenzhou wenwenzhou
    Discussions |
    Feb 5, 2025 9:52 PM
    440 views | 1 replies
  • jmp - Process behind how jmp calculates quartiles

    I am new to jmp.  I have been using Analyze - Distribution to get the quartiles for a quantitative variable.But when I went to double check jmp's process, I was confused.I typed into jmp:9 32 48 52 57 59 60 64 65 70jmp tells me that Q1 is 44, but finding Q1 by hand and using my TI-84 gives me 48.  Also, jmp tells me Q3 is 64.25 when by hand it is 64.Can someone tell me how jmp is calculating the q...

    NewJMPUser1 NewJMPUser1
    Discussions |
    Feb 4, 2025 7:22 PM
    407 views | 1 replies

Latest Discussions

  • Question About F-Tests in GLMMs with Binomial Errors

    Hi,
    I have a question regarding Generalized Linear Mixed Models (GLMMs) in JMP pro. Most statisticians consider it inappropriate to use F-tests or t-tests to evaluate predictor contributions in GLMs or GLMMs with binomial errors. This is because F- and t-tests are based on sums of squares, which assume normally distributed residual errors.
    While using a logit link function helps linearize the relati...

    LanaMilana LanaMilana
    Discussions |
    Jan 17, 2025 2:21 AM
    673 views | 0 replies
  • How to adjust the size of R plot imported with get R graphics(); ?

    I'm trying to run R code in JMP to create a plot. I succeeded in importing the plot in png format, but failed to adjust the size of the plot. I can adjust the "plot_from_R" in png format with the set size(); function in jsl, but it is not proportional and distorted. How can I import plot_from_R in the size I want?   R Init(); R Submit( "\[ windows(300,100) #it doesn't work plot(function(x) dnorm(...

    CountableModel1 CountableModel1
    Discussions |
    Jan 15, 2025 4:01 PM
    493 views | 0 replies
  • 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
view all discussions