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

  • Log Compiler

    I have a script that compiles a group of log files depending on the title of the files in the source directory.  This script reads in a Lot ID from an address table and uses that to search the path directory "dir" and compile the target files.  I need to repurpose this script where I would like the script to look inside the text of the available files to see if the lot ID shows up there and compil...

    SpannerHead SpannerHead
    Discussions |
    Jan 14, 2025 3:17 PM
    1152 views | 3 replies
  • DataTables for Applications and Dashboards

    Hello All,

    I want to build code for an application/dashboard. The first part of my code imports some tables, does some filtering and formatting and then builds some graphs and reports.

    After this I would like to have general code to build an application/dashboard to display the reports I made earlier using the already existing datatables (after the filtering and formatting). I have not been able to ...

    AdditiveRange10 AdditiveRange10
    Discussions |
    Jan 14, 2025 9:41 AM
    1734 views | 6 replies
  • Extracting a string from a column heading and adding to another

    Hello,I have an import script which I use to import results into JMP from excel. The template excel is used by lots of people and is locked for editing. We have two results columns in the excel which are both called "Results - XXX" where XXX is replaced using an excel marco to what is being studied so changes in each file. We also have columns called JMP Result 1 and JMP Result 2 which are equal t...

    Katz0801 Katz0801
    Discussions |
    Jan 14, 2025 7:58 AM
    1283 views | 3 replies
  • 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
    2134 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
    2427 views | 8 replies

Latest Discussions

  • Log Compiler

    I have a script that compiles a group of log files depending on the title of the files in the source directory.  This script reads in a Lot ID from an address table and uses that to search the path directory "dir" and compile the target files.  I need to repurpose this script where I would like the script to look inside the text of the available files to see if the lot ID shows up there and compil...

    SpannerHead SpannerHead
    Discussions |
    Jan 14, 2025 3:17 PM
    1152 views | 3 replies
  • DataTables for Applications and Dashboards

    Hello All,

    I want to build code for an application/dashboard. The first part of my code imports some tables, does some filtering and formatting and then builds some graphs and reports.

    After this I would like to have general code to build an application/dashboard to display the reports I made earlier using the already existing datatables (after the filtering and formatting). I have not been able to ...

    AdditiveRange10 AdditiveRange10
    Discussions |
    Jan 14, 2025 9:41 AM
    1734 views | 6 replies
  • updating list inside a function

    Hey guys,I'm trying to add a new value (variable value) to a list inside a function, each time the function has been called.No matter what I tried, the list is not getting any value. Any advice? Adding the example of the code

    Stas Stas
    Discussions |
    Jan 12, 2025 9:18 AM
    712 views | 2 replies
  • PI Importer Max Count lowered?

    Hey,I just noticed that with the "newer" PI importer it's possible to pass a list with AF paths instead of just one AF path.  But here's the problem: Why does the max count gets decreased with every PI tag more in the AF path list? Before with only a single PI tag I could get up to 1.000.000 rows but with every PI tag my old max count gets divided by the amount of PI tags. This is very sad, due to...

    Erik_The_First Erik_The_First
    Discussions |
    Jan 11, 2025 8:16 AM
    1363 views | 2 replies
  • fossil - solar - wind Triangle

     It almost looks like art - but it is data !
    from: Fraunhofer ISE: solar / wind / fossil energy generation in Germany per bin of 15 mit to several hours *).On the Y axis you see the fossil power generation, and on the X axis the split between wind (left) and solar(right). Via right click - new formula column / Date Time / Day of year one can add some color - with a cyclic scheme like Hue.
    Hue is not...

    hogi hogi
    Discussions |
    Jan 11, 2025 6:05 AM
    1459 views | 4 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
    605 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
    488 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
    462 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
    658 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
    576 views | 0 replies
view all discussions