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

  • Cannot save text file, "Unable to open in ReadWrite mode"

    Hello, I have a text file in a Sharepoint which I want to read, make changes to and then save back to its original location. I am able to open and make changes to it, but whenever I try to save it I get an error saying: "Unable to open in ReadWrite mode.
    The filename, directory name, or volume label syntax is incorrect." I'm using the same file path for loading and saving the text file, but only lo...

    RepeatedCoyote8 RepeatedCoyote8
    Discussions |
    Aug 1, 2024 10:38 AM
    2023 views | 2 replies
  • Running JSL within a Python script behaves differently if included in a python function such as main()

    Version: JMP 18.0.1 I have included 2 python scripts below. Both have the creation of a figure wrapped inside a function and saved as an image. If I call the image file directly using Python Get () I am able to use the jmp.run_jsl to open a window with the chart. However, if I do the same thing but wrap the jmp.run_jsl within a main() function for some reason the Python Get() does not work and I a...

    matt_watts_novo matt_watts_novo
    Discussions |
    Aug 1, 2024 12:02 AM
    1964 views | 1 replies
  • How to iteratively pull and store values from one column based on shared values in another column

    Hello,I am new to JMP scripting and have been trying to write a script for a specific process given a data table to work with. To help explain what I want, here is a crude sample table.What I want to do is to write a script that would iteratively check each row in the "Step Name" column for the value "Sleep". When it gets to a row with "Sleep", it will then check the corresponding value under the ...

    PivotalMoose447 PivotalMoose447
    Discussions |
    Jul 31, 2024 1:23 PM
    1661 views | 4 replies
  • Update an Associative array that is a class global variable

    Hello, I have a class variable that is an associative array define class ( "class name", ass_array = associative array (); meth1 = method({x,y}, for(i = 1, n <= n items(x),i++ xi = x[i]; yi = y[i]; try( ass_array << insert(xi, Insert(eval list(ass_array[eval(xi)]), eval(yi))), ass_array << insert(xi, List(eval(yi))) ); ); ); );but when I call this class to update the associative array, th...

    doctorfizz doctorfizz
    Discussions |
    Jul 31, 2024 10:59 AM
    1700 views | 4 replies
  • How do I get my colors to stay consistent for bar graphs when using filters - using JMP 17.2.0

    I have established value colors for the column, using Column Properties>Value Colors.  I have built it into a script, similar to this. dt:"(Group)Type"n << Set Property(
    Value Colors,
    {"("A" = 16, "B" = 24, "C" = 56, "D" = 8, "E" = 40, "F" = 72, and so on. (There are 36 total cell values that I am identifying in the list) Then I run the script for the graph dt << Graph Builder( Size(1460, 625), Sh...

    GLynnWarren GLynnWarren
    Discussions |
    Jul 31, 2024 10:38 AM
    800 views | 1 replies

Latest Discussions

  • How do I get my colors to stay consistent for bar graphs when using filters - using JMP 17.2.0

    I have established value colors for the column, using Column Properties>Value Colors.  I have built it into a script, similar to this. dt:"(Group)Type"n << Set Property(
    Value Colors,
    {"("A" = 16, "B" = 24, "C" = 56, "D" = 8, "E" = 40, "F" = 72, and so on. (There are 36 total cell values that I am identifying in the list) Then I run the script for the graph dt << Graph Builder( Size(1460, 625), Sh...

    GLynnWarren GLynnWarren
    Discussions |
    Jul 31, 2024 10:38 AM
    800 views | 1 replies
  • Duplicate values in a columns

    I would like to create a formula in a new column to count duplicate rows in another column how do I do this?  

    lisaash lisaash
    Discussions |
    Jul 31, 2024 9:24 AM
    4788 views | 9 replies
  • Can JMP be used to run the derivation of Darcy's law to calculate the N value of permeability?

    我们目前正在进行一项实验,使用滴定管测试灯芯的渗透性。我正在研究JMP是否可以用来计算N值,希望能得到你的帮助

    Travel_L6 Travel_L6
    Discussions |
    Jul 31, 2024 5:08 AM
    854 views | 1 replies
  • How to script "save difference summary" of "compare data tables"

    Hi,

    I have a script that calls the compare data tables platform using:DTOriginal << Compare Data Tables(Compare with( DT2new ),Hide columns with no differences( 0 ),Hide rows with no differences( 0 ));After I can manually use the top left red triangle to "save difference summary", however this isn't recorded in the log or workflow builder. Can it be scripted and if so, how?

    david707 david707
    Discussions |
    Jul 31, 2024 2:39 AM
    822 views | 1 replies
  • Change Date format

    There is an error as I cannot run this, can anyone help?// Function to reformat dates to dd/mm/yyyy
    colName = Column Dialog( "Select Date Column" );
    reformatDateColumn = Function({dt, colName},
    dt = Current DataTable();If( Column( dt, colName ) == Empty(),
    Throw( "The selected column does not exist in the current data table." );
    );// Function to identify and reformat the date
    formatDate = Function({date...

    DecileIbex201 DecileIbex201
    Discussions |
    Jul 30, 2024 9:51 PM
    1102 views | 2 replies

Latest Discussions

  • Tracking down a cycle error

    When I open a data table, I get a cycle detected error that I have to ignore every time. I can't seem to figure out what is causing the error although it apparently has something to do with the table variable in my column formula.  Here is the formula: and here is the log entry showing the issue  Can anyone help me understand what is going on here? The data table actually works fine after I click ...

    scott1588 scott1588
    Discussions |
    Jun 24, 2024 11:47 AM
    1098 views | 0 replies
  • How do I make scattorplot Matrix with multiple cloumns I select?

    Hi. I'm Jeon.I'm beginner of JMP. I want to have a script for making scattorplot Matrix with Items I select.Could you give me a help with it? I splited one data table to two data table. one has value of test items(*Data type : Numeric & Continuous) , another one has upper limit & lower limit.(*Charactor & Norminal) Column names(=test item names) are the same in 2 different data table. Two sample d...

    NagneTE1 NagneTE1
    Discussions |
    May 27, 2024 5:18 PM
    784 views | 0 replies
  • graph builder bug - x group shift

     (JMP 17, MacOS) I have a JSL scripts that creates multiple graph builder charts, but in some of them, and it's not repeatable always - some of the x groups  are getting different height, causing also the data plotted to be shifted. Another issue - is that I can't set the X group lables text to be 90 degrees rotated to fit long strings without making the chart too wide. This is supported for X var...

    ShlomiB76 ShlomiB76
    Discussions |
    Apr 14, 2024 12:08 AM
    719 views | 0 replies
  • Project ignoring H Splitter Box Set Sizes . . . sometimes

    I'm working with a JMP 17 Project and have a script to import a CSV file, embed a script into the Data Table, and execute the embedded script. The embedded script creates a graph from the data and sets the Project layout. All of these pieces, executed individually, work as intended. The problem I am having is that when I execute the combined script, the outer H Splitter Box ignores <<Set Sizes and...

    ionatx ionatx
    Discussions |
    Apr 4, 2024 1:25 PM
    709 views | 0 replies
  • Error during stemming in text explorer: Inconsistent Recodes in access or evaluation of 'List'

    Hello Community! I'm trying to recode the stemming in text explorer based on a fixed dictionary of words and I'm getting this error "Inconsistent Recodes in access or evaluation of List". This is my code: obj = dt << Text Explorer( Text Columns( :col1) ); obj << Stemming("Stem for Combining"); obj << Add Recodes( {{"attractive", "Attract"},{"unattractive", "Attract"},{"attract", "Attract"},{"ugl...

    sm3001 sm3001
    Discussions |
    Mar 21, 2024 12:49 AM
    932 views | 0 replies
view all discussions