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

  • In a data frame Filter column based on another column that contains the column name

    Hello Folks,I have attached a data set. In the data set, I have column called Parameter that contains the name of the columns that are in the data set. I want to first filter the column that corresponds to each unique column name that is present in the Parameter column and then join it to the subset column that I have created and create a variability chart. At this moment I have 2 unique parameter...

    PioJesudoss PioJesudoss
    Discussions |
    Jan 14, 2025 7:51 AM
    1561 views | 6 replies
  • JSL Adding "And" condition to Data Filter

    Hello JMP CommunityI was wondering if there is a way to add an "and" condition to a data filter in JSL.as an example I made a datasetIf we make a simple model over just the mean, model = Fit Model( Y( :Data ), Run);We can restrict the model to just one group with a data filter dtf = model << Local Data Filter(Columns(:Group), where(:Group == "A"));However now if I want to add another filter the on...

    KasperSchlosser KasperSchlosser
    Discussions |
    Jan 14, 2025 7:40 AM
    1689 views | 8 replies
  • access content of Web Page Box?

    I get an error message when I access a REST API via load text file()load text file ("http://api.open-notify.org/iss-now.json");On the other hand, it works when I use web()New Window("", web browser = Web Browser Box ( "http://api.open-notify.org/iss-now.json", JMP window )); Is there a way to retrieve the JSON string via the Web Page Box?web browser << Get text;
     http://api.open-notify.org/iss-now....

    hogi hogi
    Discussions |
    Jan 14, 2025 3:21 AM
    1675 views | 9 replies
  • Couleur sur des indicateurs

    Bonjour à tous, J'essaye de créer un rapport dans JMP permettant de voir des dérives sur certains processus. Par exemple, j'étudie 6 items dans mon processus et j'aimerais avoir un indicateur avec des couleurs : - si 5 points consecutifs (ou plus) supérieur à 3sigma : couleur rouge - si 3 points consecutifs (ou plus) supérieur à 3sigma : couleur jaune - sinon couleur verte Et ensuite j'aimerais po...

    hcarr01 hcarr01
    Discussions |
    Jan 13, 2025 11:26 PM
    3859 views | 12 replies
  • Weighted mean

      In this example, I would like to calculate Column 2 mean based on mean of each Group. Group 3 has two values, and the mean of Group 3 is (3+9)/2= 6. So I would need to get the by-Group column 2 mean : (3+3+(3+9)/2) /3 = 4. When I use Tabulate or Column Mean (:Column2 ) to get the statistics, each individual column2 values were used separately for calculating the mean (3+3+3+9)/4 = 4.5.  How to g...

    GroupSquareWolf GroupSquareWolf
    Discussions |
    Jan 13, 2025 8:33 PM
    3590 views | 7 replies

Latest Discussions

  • Weighted mean

      In this example, I would like to calculate Column 2 mean based on mean of each Group. Group 3 has two values, and the mean of Group 3 is (3+9)/2= 6. So I would need to get the by-Group column 2 mean : (3+3+(3+9)/2) /3 = 4. When I use Tabulate or Column Mean (:Column2 ) to get the statistics, each individual column2 values were used separately for calculating the mean (3+3+3+9)/4 = 4.5.  How to g...

    GroupSquareWolf GroupSquareWolf
    Discussions |
    Jan 13, 2025 8:33 PM
    3590 views | 7 replies
  • x-axis in log scale

    how to have vertical line in graph where x-axis is in log scale with dual Y-axis?

    az3964 az3964
    Discussions |
    Jan 13, 2025 10:57 AM
    368 views | 1 replies
  • How to add labels to error bars (Graph Builder)

    Hi, I would like to add labels to my error bars which I have defined as my range for my dataset. My graph should have the means, and the minimum and maximum values of my data listed on the plot (A column chart). Is this possible? I am only able to add for my means currently.

    MetaLizard62080 MetaLizard62080
    Discussions |
    Jan 13, 2025 10:23 AM
    853 views | 3 replies
  • 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
    2146 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
    753 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
    489 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
    372 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
    585 views | 0 replies
view all discussions