cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Decimals on y axis on plots

    I use a simple JMP add-in that outputs some plots. Is there anything I could do to change the decimal precision of the y-axis without having to manually adjust it each time? How it is now:  

    how i would like it :  The script that i use is this : 

       gb1 = Expr( Graph Builder( Size( 635, 338 ), invisible, Show Control Panel( 0 ), Variables( X( :Time Point Mont...

    ConvergentWhale ConvergentWhale
    Discussions |
    Feb 7, 2025 2:47 AM
    536 views | 1 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
    1279 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
    665 views | 1 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
    873 views | 2 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
    699 views | 2 replies

Latest Discussions

  • Decimals on y axis on plots

    I use a simple JMP add-in that outputs some plots. Is there anything I could do to change the decimal precision of the y-axis without having to manually adjust it each time? How it is now:  

    how i would like it :  The script that i use is this : 

       gb1 = Expr( Graph Builder( Size( 635, 338 ), invisible, Show Control Panel( 0 ), Variables( X( :Time Point Mont...

    ConvergentWhale ConvergentWhale
    Discussions |
    Feb 7, 2025 2:47 AM
    536 views | 1 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
    699 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
    608 views | 1 replies
  • concatenate tables only if they exists

    I am trying to create a workflow when I would like to open multiple tables and concatenate them. The issue I am running into is that I don't know whether the tables will be available. As an example let's assume I may have up to 8 tables total. Let's call them table1, table2... table8.The workflow I created assumed all tables exists, but if I remove one or a few tables it generates the error since ...

    andrey andrey
    Discussions |
    Feb 3, 2025 9:48 AM
    1295 views | 4 replies
  • Reset selection button on global filter

    hey everyone, I was wondering if anyone knew a way to use JSL to recreate the action of pressing this buttonI looked in the scripting index and didn't see anything that appears to related to this function. Thanks for any guidance! Steve

    shampton82 shampton82
    Discussions |
    Jan 31, 2025 9:52 AM
    721 views | 2 replies

Latest Discussions

  • 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
    614 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
    608 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
    492 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
    465 views | 0 replies
  • help to get R squared predicted

    Hello!I installed a script from a community response regarding the calculation of R²pred, as shown in the image below (I'm using JMP 18 pro): (link da resposta do @erich_gundlach https://community.jmp.com/t5/JMP-Add-Ins/Predicted-R-square-calculator/ta-p/39927)  In PRESS, R²pred didn't appear. (Press is low because I haven't reduced the model yet, don't worry =))  I really need to show these R²pre...

    ivanpicchi ivanpicchi
    Discussions |
    Dec 4, 2024 10:21 AM
    667 views | 0 replies
view all discussions