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

  • 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
  • How do I combine 2 graphs into 1 PNG?

    I have these two graphs that I'm saving as seperatly as PNG, but would like to save both graphs as one image. Is that possible? I'm using version 18.0.1.     gb1 = Graph Builder( Size(879, 689), Show Control Panel(0), Grid Color("Black"), Variables(X(:SiteX), Y(:SiteY), Wrap(:Wafer), Color(:BDO_P1P2)), Elements(Heatmap(X, Y, Legend(44), Label("Label by Value"))), Local Data Filter(Close Outl...

    CoxPorcupine721 CoxPorcupine721
    Discussions |
    Jan 6, 2025 10:00 AM
    953 views | 1 replies

Latest Discussions

  • 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
  • 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

Latest Discussions

  • 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
  • Script to highlight a cell in a report

    hello everyone....   I am performing contingency reports across a number of categorical X's towards a given Y (categorical) - where I like to highlight contingency table cells (from output report) based on conditions :    e.g. highlight if  count >=12 Cell Chi Square >=3.0  Would like to highlight the cell w/ some color (font color can also work, highlight is better) if it satisfies the given cond...

    altug_bayram altug_bayram
    Discussions |
    Nov 22, 2024 8:33 AM
    596 views | 0 replies
view all discussions