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

  • How to combine multiple plots in 1 tab using JSL

    Hi, I have two different plots and I would like to combine them in one tab on my journal. dt=open("$SAMPLE_DATA/big class.jmp"); // Plot 1 biv = dt << Bivariate( invisible, Y( :height ), X( :weight ), By( :sex ) ); // Create the window, with the first tab nw=New Window("Tabs", text box("here are the tabs"), tb = Tab Box((report(biv[1])[outlinebox(1)])<<get title ,report(biv[1]))); //Plot 2 biv2...

    UserID16644 UserID16644
    Discussions |
    Jan 22, 2024 7:30 PM
    1548 views | 1 replies
  • Setting Spec Limits with USL=LSL?

    Hi.  I have a data table column consisting of coded integer values.  For example, a "0" indicates "OK", and other numbers indicate some kind of issue.  I would like to set spec limits of (0,0) for this column, but JMP issues a "Consistency Error" when I try this and will not let me have the USL be less than or equal to the LSL.  I know I could just set the limits to be something like (-0.1, +0.1),...

    nikles nikles
    Discussions |
    Jan 22, 2024 5:27 PM
    4652 views | 7 replies
  • For Each Loop across multiple associative arrays

    Hi, I'm struggling with the syntax for a For Each loop across multiple associative arrays. For example:q = ["q1"=>11, "q2"=>22, "q3"=>33]; w = ["w1"=>1111, "w2"=>2222, "w3"=>3333];For single array, just for reference:For Each( {a, i}, q, Show( i, a ) ); // retrieves indices and keys For Each( { {a, b}, i }, q, Show( i, a, b ) ); // retrieves indices, keys and valuesAnalogously, across two arrays i...

    AlterEgo AlterEgo
    Discussions |
    Jan 22, 2024 11:08 AM
    1805 views | 2 replies
  • How Can I Delete Rows Given A Condition in JSL

    Hello. I am a JSL rookie but have some scripting experience with VBA and Python. I have a table that has two columns 'purification_run' and 'parent_purification_runs'. I want to delete each row that has a 'purification_run' field that is contained in any of the 'parent_purification_runs' fields. I wrote the following JSL script to accomplish this, and it runs, but does not perform the intended del...

    bio_guy bio_guy
    Discussions |
    Jan 22, 2024 8:16 AM
    1019 views | 1 replies
  • JSL ignores white-spacing for names, most people don't take advantage of this!

    Not an important question, but I've often wondered why. At my company there are many casual scripters in JSL and a few heavy-weights.  I'm a voracious consumer of other peoples code (reading) and have read a great deal of code from more than 20 people here.  Also, I've seen many examples of code posted here in the community forums. Almost universally I see that the code authors do not take advanta...

    ErraticAttack ErraticAttack
    Discussions |
    Jan 22, 2024 12:11 AM
    4854 views | 9 replies

Latest Discussions

  • Setting Spec Limits with USL=LSL?

    Hi.  I have a data table column consisting of coded integer values.  For example, a "0" indicates "OK", and other numbers indicate some kind of issue.  I would like to set spec limits of (0,0) for this column, but JMP issues a "Consistency Error" when I try this and will not let me have the USL be less than or equal to the LSL.  I know I could just set the limits to be something like (-0.1, +0.1),...

    nikles nikles
    Discussions |
    Jan 22, 2024 5:27 PM
    4652 views | 7 replies
  • For Each Loop across multiple associative arrays

    Hi, I'm struggling with the syntax for a For Each loop across multiple associative arrays. For example:q = ["q1"=>11, "q2"=>22, "q3"=>33]; w = ["w1"=>1111, "w2"=>2222, "w3"=>3333];For single array, just for reference:For Each( {a, i}, q, Show( i, a ) ); // retrieves indices and keys For Each( { {a, b}, i }, q, Show( i, a, b ) ); // retrieves indices, keys and valuesAnalogously, across two arrays i...

    AlterEgo AlterEgo
    Discussions |
    Jan 22, 2024 11:08 AM
    1805 views | 2 replies
  • How Can I Delete Rows Given A Condition in JSL

    Hello. I am a JSL rookie but have some scripting experience with VBA and Python. I have a table that has two columns 'purification_run' and 'parent_purification_runs'. I want to delete each row that has a 'purification_run' field that is contained in any of the 'parent_purification_runs' fields. I wrote the following JSL script to accomplish this, and it runs, but does not perform the intended del...

    bio_guy bio_guy
    Discussions |
    Jan 22, 2024 8:16 AM
    1019 views | 1 replies
  • check whther a project is already open

    Hello, I have a script which is part of an add-in. When the script is launched, it triggers the creation of a project (project=new project (...)). However, when I'm debugging the script, I typically run it with a project already open and use the code project=this project(). I would like to make the script smarter so that if a project(s) is already open then it run automatically into the open proje...

    Sburel Sburel
    Discussions |
    Jan 19, 2024 5:07 PM
    1488 views | 2 replies
  • GraphBuilder Legend hook

    There are many useful instances of being able to have a hook onto the selection state change of a legend for a chart / graph.  With the non graph-builder method of generating charts' and graphs' legends (using Row Legend()), this was quite simple as the display element was simply a Table Box() that can receive a Set Row Change Function() message.  The same cannot be done (to my knowledge) with Gra...

    ErraticAttack ErraticAttack
    Discussions |
    Jan 17, 2024 6:41 PM
    749 views | 0 replies

Latest Discussions

  • GraphBuilder Legend hook

    There are many useful instances of being able to have a hook onto the selection state change of a legend for a chart / graph.  With the non graph-builder method of generating charts' and graphs' legends (using Row Legend()), this was quite simple as the display element was simply a Table Box() that can receive a Set Row Change Function() message.  The same cannot be done (to my knowledge) with Gra...

    ErraticAttack ErraticAttack
    Discussions |
    Jan 17, 2024 6:41 PM
    749 views | 0 replies
  • Copy Columns - selected rows

    Copy Columns from the right-click context menu of a column header is very useful. Just copy the column(s)  - with all the settings ... and paste it into a JSL script - or another table. There is a hidden feature:
    When rows are selected, the values of the selected rows are used as arguments of the Set Values() command and will populate the cells of the new column. So, when you select all rows before...

    hogi hogi
    Discussions |
    Jan 3, 2024 1:27 PM
    1229 views | 0 replies
  • Documentation for Promise/async http requests

    Hi, I was wondering if anyone knows of any documentation for Promise objects. So far I am finding fairly little in the scripting index or at https://www.jmp.com/support/help/en/17.2/index.shtml. I am currently working from the Send documentation, which gives an example and demonstrates that you can use `<< On Response` and `<< On Error`, but not what else, if anything you can do with a Promise obj...

    mat-ski mat-ski
    Discussions |
    Dec 22, 2023 9:45 AM
    838 views | 0 replies
  • Keyboard shortcuts

    [More Topic Containers like this] Jmp Help/Keyboard Shortcuts   assign new Keyboard ShortcutsAssigning-keyboard-shortcuts-for-frequently-used-options comment/uncomment blocks of code (international keyboard)A shortcut can be set in the menu customization Editoradd  keyboard shortcuts for your own functionsadd them to the main menu/ to a toolbar and assign a shortcutadd keyboard shortcuts for "open...

    hogi hogi
    Discussions |
    Nov 26, 2023 1:38 AM
    1134 views | 0 replies
  • Could JMP optimize factors with uncertainty?

    Hello community!!,A question: will it be possible for the profiler to find the best combinations of factors with uncertainty when performing a simulation, which maximize the total utility and minimize the total cost, generating a table of the best combinations found? For example: 

    Marco1 Marco1
    Discussions |
    Nov 21, 2023 9:08 AM
    922 views | 0 replies
view all discussions