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

  • Issue with concatenating and sort function

    I'm creating a table called "combinedTable" by concatenating two files and it saves just fine. But I would like to sort the concatenated table, but when I use the sort function it creates a new untitled table that pops up while saving the unsorted "combinedTable". What's wrong with my script?   <.... extractLast9Chars = Function({filename}, Substr(filename, Length(filename) - 12, 11) ); // Cre...

    CoxPorcupine721 CoxPorcupine721
    Discussions |
    Jan 9, 2025 12:12 PM
    752 views | 1 replies
  • Collecting user input via dialog box in a python script?

    I need to add collecting user inputs to an existing older python script (it initially used fixed number and location for files) ... I can get it to somewhat work using the "jmp.run_jsl()" function - it displays the dialog, gets the input and can print it out - but doesn't actually return anything to Python.  I've tried the Python Send and Get commands but the variable remains '0'. I started off ju...

    andersonmj2 andersonmj2
    Discussions |
    Jan 9, 2025 8:52 AM
    1350 views | 2 replies
  • Create/ add new columns using veribles

    Hey guys, I apologize for the confusing title. I wasn't sure how to phrase it.
    My question is: I have a code in which I'm adding new columns using long conditions.The conditions are the same for all the columns, except to one parameter that changes.
    Is there a way, instead writing each time the full code and the conditions with the new parameter value, create a template (like a function) that I will...

    Stas Stas
    Discussions |
    Jan 8, 2025 8:07 PM
    3046 views | 9 replies
  • How can Display Boxes be center aligned?

    How can the two objects in the following JSL be aligned along their respective central lines as shown in the image? New Window( "Test", Text Box( "Test Center alignment" ), CB = Combo Box( {"1", "2", "3", "4"}, ); );  

    BabyDoragon BabyDoragon
    Discussions |
    Jan 8, 2025 2:54 AM
    1054 views | 1 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
    606 views | 0 replies

Latest Discussions

  • 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
    606 views | 0 replies
  • Expression Handling in JMP: Tips and Trapdoors

    Collection of useful resources on the web:    There is a wonderful lecture by @joseph_morgan  in the Discovery Summit Series:
    https://community.jmp.com/t5/Abstracts/Using-JSL-to-Develop-Efficient-Robust-Applications-EU-2018-415/ev-p/849638 
    Joseph explains the secrets and possibilities of Expression Handling in JSL - and the trapdoors associated with the functionality.
    The lecture is based on the con...

    hogi hogi
    Discussions |
    Jan 7, 2025 11:55 AM
    2696 views | 3 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
    489 views | 0 replies
  • JMP importing change since 18 upgrade

    My scripts that I made before using the "Open" command is JSL is now way too slow. My script takes 12 minutes to execute now. How should I import excel sheets now or please fix this but in JMP  I used to import my excel files using this code below but it takes too long: Open( "/Z:/Shared/R&D/Runsheet.xlsx", Worksheets( {"Thickness"} ), Use for all sheets( 1 ), Concatenate Worksheets( 1 ), Create C...

    StandardOtter60 StandardOtter60
    Discussions |
    Jan 7, 2025 5:57 AM
    3185 views | 6 replies
  • Curve fitting and Parallelism

    Hi,I was wondering if there is a platform in JMP17 that helps with 4PL or 5PL curve fitting (for bioassay). I'm looking for a step-by-step guideline as I've never done relative potency analysis with JMP in the past.Thank you

    DFereidouni DFereidouni
    Discussions |
    Jan 6, 2025 7:17 PM
    2050 views | 3 replies

Latest Discussions

  • 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
    606 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
    489 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
    463 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
    660 views | 0 replies
  • Black Full Screen Issue in JMP During Startup

    Hi everyone, Black Full screen problems are preventing me from using JMP. Every time I launch the software, the screen turns completely black, and I can’t interact with any of the menus or features. I have already tried reinstalling JMP, updating my display drivers, and ensuring my system meets the requirements, but nothing seems to resolve the issue.Iam currently using JMP version 16 on Windows 1...

    romromillys romromillys
    Discussions |
    Nov 28, 2024 11:26 PM
    578 views | 0 replies
view all discussions