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 5, 2026 5:05 PM
    10 views | 0 replies
  • COM attributes for JMP

    Hi guys, currently I write python to run the jsl code by using RunCommand like below:

    import win32com
    jmp = win32com.client.Dispatch("JMP.Application")
    jmp.RunCommand('SHOW("Hi");')
    print(jmp.GetLogContents) I am wondering if there any docs or records that I can read to find other COM attributes for JMP like OpenDoucument, CreateOneWay I tried searching but few info was found. thanks!

    Clanlope Clanlope
    Discussions |
    Jan 5, 2026 1:36 PM
    191 views | 3 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 5, 2026 1:25 PM
    741 views | 10 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 5, 2026 12:00 PM
    125 views | 5 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
    99 views | 3 replies

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 5, 2026 5:05 PM
    10 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 5, 2026 1:25 PM
    741 views | 10 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 5, 2026 12:00 PM
    125 views | 5 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
    99 views | 3 replies
  • Help performing a median polish

    Hello, I have cell-based screening data that is showing a row-wise artifact that causes my odd rows (A, C, etc) to be slightly lower in signal than my even rows (B, D etc). While the perfect solution is to mitigate the source of variance in the equipment, I also would like to smooth my data to salvage and better call hits. I have read in a number of papers about Tukey's median polish as being used...

    amichaud amichaud
    Discussions |
    Jan 2, 2026 7:39 AM
    460 views | 9 replies

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 5, 2026 5:05 PM
    10 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
    346 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
    211 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
    190 views | 0 replies
view all discussions