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 build a Multitabbed and Filterable Dashboard?

    The Discovery Summit presentation One Multi-tabbed, Filterable Dashboard presents a universal script to generate a multitabbed dashboard. I am using a copy of this script (shown below) to combine a series of dashboards into one multitabbed dashboard. However, the script takes all the dashboards apart and combines them again in a 1 by 1 or 2 by 2 fashion. So, an original dashboard with two graphs, ...

    Steffen_Bugge Steffen_Bugge
    Discussions |
    Sep 10, 2023 12:59 PM
    1325 views | 1 replies
  • I need to populate a new column based on results of an if/then statement

    Hi - I am trying to create and populate a group of new columns based on results of an if/then statement.   STEP 1:I need to create the new empty columns that will be populated.  (55 in all) (Each new column is a numeric, continuous field.)  The name of each column will correspond to the name of each of the 55 compounds in the group followed by "_ppt".  E.g. the compound named "4:2 FTS" results in ...

    learning_JSL learning_JSL
    Discussions |
    Sep 8, 2023 1:19 PM
    3809 views | 8 replies
  • Referencing Box Plot outliers checkbox in Graph Builder

    Hi,How can I reference the checkbox in the box plot option using jsl? I tried the following but doesn't work. Any Suggestions? checkboxes = nw << XPath("(//OutlineBox[text()='Plots']//OutlineBox[text()='Box Plot']//CheckBoxBox)"); checkboxes[N Items(checkboxes)] << Set All(0); Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); List1 = {"NPN1", "PNP1", "PNP2", "...

    Jackie_ Jackie_
    Discussions |
    Sep 8, 2023 6:35 AM
    1502 views | 3 replies
  • Can I get elements in "Group Y" to "Y" in Graph Builder?

    The script below generates data similar to my actual data and plots the data in a layout similar to what I would like. Names Default To Here(1); clear log (); dt = Open("$SAMPLE_DATA/Probe.jmp"); // Combine columns 1 Data Table( "Probe" ) << Combine Columns(columns( :Lot ID, :Wafer Number ), Column Name( "LotWafer" ), Delimiter( "." )); // Combine columns 2 Data Table( "Probe" ) << Combine Columns...

    Neo Neo
    Discussions |
    Sep 8, 2023 12:01 AM
    2625 views | 5 replies
  • Error when Saving Project File

    I keep getting an error when trying to save a project file that says:Project has unsaved documents. All files in a project must be saved or closed before the project can be saved. at row 1629.One of my tables has 1629 rows, but it is already saved in the script a few lines above. I even tried manually saving each file again, then tried running the JSL to save the project, and I get the same error ...

    R2OKeefe R2OKeefe
    Discussions |
    Sep 7, 2023 3:31 PM
    6506 views | 9 replies

Latest Discussions

  • How to build a Multitabbed and Filterable Dashboard?

    The Discovery Summit presentation One Multi-tabbed, Filterable Dashboard presents a universal script to generate a multitabbed dashboard. I am using a copy of this script (shown below) to combine a series of dashboards into one multitabbed dashboard. However, the script takes all the dashboards apart and combines them again in a 1 by 1 or 2 by 2 fashion. So, an original dashboard with two graphs, ...

    Steffen_Bugge Steffen_Bugge
    Discussions |
    Sep 10, 2023 12:59 PM
    1325 views | 1 replies
  • Using Parse in contain

    Hi,I am trying to iterate through the list and get the values from the summary_tb into the lists L1, L2, L3 if contained in Lists 1,2,3,4. I am stuck with Prase(lists[j]). Any advice? Thanks   dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); List1 = {"NPN1", "PNP1", "PNP2", "NPN2", "PNP3", "IVP1"}; List2 = {"PNP4", "NPN3", "IVP2", "NPN4", "SIT1"}; List3 = {"INM1", "INM2", "VPM1", "VPM2",...

    Jackie_ Jackie_
    Discussions |
    Sep 4, 2023 6:03 PM
    1776 views | 4 replies
  • FIles In Directory

    Hi,I'm using 'Files in Directory' to get a list of files on a networked folder. I get a different number of filenames returned depending on if I use the mapped drive letter or the full path name (fewer when using the full path name). I recently changed to jmp17 from jmp16. I did not notice previously that any filenames were missing when using jmp16 but only have one version now so can't compare. H...

    anna_717 anna_717
    Discussions |
    Sep 4, 2023 11:53 AM
    997 views | 1 replies
  • PickFile() from within a Project does not use file filters

    When I use PickFile() outside of a project, it works as noted in the scripting guide, scripting index, and other posts here in the forums. However, when I run the script within a project, the window that opens is a different one. It seems to be in order to allow you to pick a file that is saved to the project itself, but the filters do not work even though it shows the folder that I specified as d...

    R2OKeefe R2OKeefe
    Discussions |
    Sep 3, 2023 8:45 PM
    1204 views | 0 replies
  • Split whole string into 2 new column

    table<< New Column("d0", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 1, 3))); table<< New Column("d1", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 4, 6)));
    string= 1_1_1_1_1_1
    wanted to split this string into 2 column with data 1_1_1 for d0 and 1_1_1 for d1. Somehow the script above not working

    weilyne weilyne
    Discussions |
    Sep 3, 2023 12:52 PM
    1113 views | 1 replies

Latest Discussions

view all discussions