cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Modify or Update an Add-in

    This may be a silly question, but I can't seem to find the answer online. I created an add-in, which is saved as a .jmpaddin file in a folder. The JSL scripts function as expected when calling them from the add-in. However, I made some modifications to the scripts, but they are not reflected when running them via the add-in, even after restarting JMP. I can't figure out how to open the add-in in e...

    ClassDendrogram ClassDendrogram
    Discussions |
    Jan 6, 2026 1:08 PM
    67 views | 4 replies
  • Update Table Matching Columns Based on List

    I'm using this simple update function to update a table based on the column matching below   dt << Update( With( dt_summary ), Match Columns( :DIE = :DIE, :RU = :RU, :NAME = :NAME, :TEST = :TEST ) ); However, sometime the input table has DIE, RU, NAME or TEST columns missing, so I would like to update this column matching criteria depending on the input table. I tried several methods that didn'...

    ClassDendrogram ClassDendrogram
    Discussions |
    Jan 6, 2026 1:00 PM
    15 views | 0 replies
  • How to display dynamic Data Filter in JMP Live?

    We are currently using a custom UI for local setup, but now we want to have a similar setup on JMP Live. I realized that JMP Live doesn’t work with custom UIs. What options do I have to achieve the same or a similar result? The current UI filters and creates subsets in a specific format for the end user.   Is it possible, through Data Filter or some other method, to achieve the same functionality...

    OddsDeer284888 OddsDeer284888
    Discussions |
    Jan 6, 2026 11:50 AM
    768 views | 11 replies
  • How can this JSL be used to create this graphic?

    This is the code I wrote for the AI to view images, but I failed to add any text successfully.
    Thanks Experts! Names Default To Here( 1 ); // === 1. Data & Parameters === SolarTerms = { "夏至", "小暑", "大暑", "立秋", "处暑", "白露", "秋分", "寒露", "霜降", "立冬", "小雪", "大雪", "冬至", "小寒", "大寒", "立春", "雨水", "惊蛰", "春分", "清明", "谷雨", "立夏", "小满", "芒种" }; OuterRadius = 10; InnerRadius = OuterRadius / 2; T...

    lala lala
    Discussions |
    Jan 6, 2026 6:49 AM
    188 views | 8 replies
  • How to use JSL to select a specific item in the filter

    Hi all, I would like to ask how to use JSL to select a specific item in the filter when the local data filter already exists, such as first selecting :age == "12" and then selecting :age == "13" next time,thanks (JMP17)

    DunnRankBudgie8 DunnRankBudgie8
    Discussions |
    Jan 6, 2026 12:29 AM
    74 views | 6 replies

Latest Discussions

  • Update Table Matching Columns Based on List

    I'm using this simple update function to update a table based on the column matching below   dt << Update( With( dt_summary ), Match Columns( :DIE = :DIE, :RU = :RU, :NAME = :NAME, :TEST = :TEST ) ); However, sometime the input table has DIE, RU, NAME or TEST columns missing, so I would like to update this column matching criteria depending on the input table. I tried several methods that didn'...

    ClassDendrogram ClassDendrogram
    Discussions |
    Jan 6, 2026 1:00 PM
    15 views | 0 replies
  • How to display dynamic Data Filter in JMP Live?

    We are currently using a custom UI for local setup, but now we want to have a similar setup on JMP Live. I realized that JMP Live doesn’t work with custom UIs. What options do I have to achieve the same or a similar result? The current UI filters and creates subsets in a specific format for the end user.   Is it possible, through Data Filter or some other method, to achieve the same functionality...

    OddsDeer284888 OddsDeer284888
    Discussions |
    Jan 6, 2026 11:50 AM
    768 views | 11 replies
  • How can this JSL be used to create this graphic?

    This is the code I wrote for the AI to view images, but I failed to add any text successfully.
    Thanks Experts! Names Default To Here( 1 ); // === 1. Data & Parameters === SolarTerms = { "夏至", "小暑", "大暑", "立秋", "处暑", "白露", "秋分", "寒露", "霜降", "立冬", "小雪", "大雪", "冬至", "小寒", "大寒", "立春", "雨水", "惊蛰", "春分", "清明", "谷雨", "立夏", "小满", "芒种" }; OuterRadius = 10; InnerRadius = OuterRadius / 2; T...

    lala lala
    Discussions |
    Jan 6, 2026 6:49 AM
    188 views | 8 replies
  • [Graph Builder] Element property setting not saved on the JSL

    Dear all, I would like to create a graph with multi Y with both left and right, and I want to set transparent to the bars on the left side only this JSL works but once I manually modified the graph and then click save as script, the transparent setting is gone. is anybody aware why and how to achieve this? thanks! df = Current Data Table(); cols = df << Get Column Names( String ); gb = Graph Buil...

    Clanlope Clanlope
    Discussions |
    Jan 5, 2026 10:57 PM
    29 views | 1 replies
  • Script to swap positions of a column from one graph builder drop zone to another

    Hey everyone, I was wondering if we can script the ability to move a column from one panel element to another in graph builder easily.  If it is a simple graph then just dragging columns around is easy enough, but if the chart gets really large and you can't see all the possible drop zones then it gets cumbersome to have to try and wait for the screen to scroll to where you want to go.  As an exam...

    shampton82 shampton82
    Discussions |
    Jan 3, 2026 9:28 AM
    106 views | 3 replies

Latest Discussions

  • Update Table Matching Columns Based on List

    I'm using this simple update function to update a table based on the column matching below   dt << Update( With( dt_summary ), Match Columns( :DIE = :DIE, :RU = :RU, :NAME = :NAME, :TEST = :TEST ) ); However, sometime the input table has DIE, RU, NAME or TEST columns missing, so I would like to update this column matching criteria depending on the input table. I tried several methods that didn'...

    ClassDendrogram ClassDendrogram
    Discussions |
    Jan 6, 2026 1:00 PM
    15 views | 0 replies
  • Need help with random errors on script start AFTER the previous run finished

    Never mind, I figured it out - one of the functions had Eval() which was evaluating right when script starts.   I am writing a simple GUI prototype: List of tables in a combo box, button to add\open table and Filter Col Box with column names of the currently selected table. Everything works on the first run - tables are switched, columns are displayed, combobox reacts to tables being added, closed...

    miguello miguello
    Discussions |
    Dec 15, 2025 10:40 AM
    352 views | 0 replies
  • Make customizing the toolbar a breeze.

    Just modify this file directly. As long as you prepare your own ICONS in advance, you can instantly usercust.jmpcust create your own personal toolbars in batches. Make scripts ubiquitous.

    lala lala
    Discussions |
    Nov 13, 2025 6:39 AM
    212 views | 0 replies
  • Python and Formula Columns

    Formula Column are very restrictive.
    If the entries of a JMP column are defined by a column formula , there is no possibility to change individual entries, neither manually nor via JSL:   dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); dt << new column("row", Formula(row())) << run formulas; :row << suppress eval; Try(:row[5]=7, Caption("change a cell of a formula column via JSL? doesn't work")); Wait(2...

    hogi hogi
    Discussions |
    Nov 6, 2025 3:08 AM
    202 views | 0 replies
  • Windows 11 > JMP 17.2 > Fit Model > Contrasts > How to Build a Contrast Matrix with More Columns than Conditions?

    Hi JMP Community, When building contrasts in a Regular Least Squares Fit Model analysis, the number of columns (i.e., discrete contrasts) is limited to the number of conditions (i.e., number of items produced by the combinations of all parameters). In many cases, I'd like to create more contrasts than conditions (i.e., comparisons of multiple pairs of factor combinations)  Example: VAR1 = A, B, C ...

    Thierry_S Thierry_S
    Discussions |
    Oct 30, 2025 9:04 AM
    192 views | 0 replies
view all discussions