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

  • Search function not being as useful on JMP19

    Whenever I wanna search for something on JMP 18, it's pretty easy, as I don't need to remember the order of the characters. For example, on JMP 18 ("Arrhythmia" data sample), I could just type some keywords of the label name: But this doesn't work on JMP19: This is extremely annoying. Anyone knows if there's an option that could hot fix this?  

    fasterthanLewis fasterthanLewis
    Discussions |
    Feb 12, 2026 9:19 PM
    373 views | 3 replies
  • Convert Missing Numeric to Char

    When converting a missing Numeric value to Char, Char() will return ".".  Is there a simple way to return ""? (I know I can wrap with If( Is Missing( )), but this seems unnecessarily cumbersome.     New Table( "Missing Numeric to Char", Add Rows( 1 ), New Column( "Numeric", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [.] ) ), New Column( "Is Numeric Missing?", Numeric, "Continuous"...

    robot robot
    Discussions |
    Feb 12, 2026 1:03 PM
    235 views | 2 replies
  • Script to automatically save all data tables and reports in a JMP project to the contents

    I currently have the below static script that saves specific reports and tables to the project contents by name. I'd like to generalize this to a script that will do this for any project, so names would have to be dynamically generated and passed through a save function. I've played around a bit and haven't gotten close yet - help is appreciated This is the script that currently works on fixed tab...

    Stefan_Moser Stefan_Moser
    Discussions |
    Feb 12, 2026 11:50 AM
    384 views | 4 replies
  • Copying Saved Local Data Filter Script from to Data Table to Other Platforms

    Hi,  I have two problems related to using the local data filter within JSL. I'm using JMP 17. I'm designing a script where a user is prompted to select from a list that gets passed to a local data filter within a Graph Builder object.  This part is fine but once the graph opens I want to save the local data filter to the main data table. The JMP log doesn't record this when I do it manually so I'm...

    Cathal Cathal
    Discussions |
    Feb 12, 2026 7:55 AM
    233 views | 2 replies
  • How do I use the Col Maximum Formula with a "where" condition

    Hi, I have a problem where I want to formulate a new column as a benchmark to all other countries. If there are more rows for the country, I want to take the max value of it as the benchmark. See the example below for clarification. Data kind of looks like this:
    Country       Value         period       A                  10              201301         A                  30              201301      ...

    apploarcher apploarcher
    Discussions |
    Feb 11, 2026 2:21 PM
    25108 views | 20 replies

Latest Discussions

  • JMP add in for TURF Analysis

    Hi Everyone,  I am looking for the add in used to create figure 6.4.7 in the following book - https://books.google.ca/books?id=YjBiDwAAQBAJ&pg=PT182&lpg=PT182&dq=JMP+Turf+add+in&source=bl&ots=HfEwvAVAEp&sig=ACfU3U1f7NEQkjFCzgSWPEa-5t3pgTpQsA&hl=en&sa=X&ved=2ahUKEwiq6dz8qLTiAhXmYd8KHQ9oAKQQ6AEwE3oECAoQAQ#v=onepage&q=JMP%20Turf%20add%20in&f=falseAt the end of the chapter the author mentioned that “F...

    KVG KVG
    Discussions |
    Feb 11, 2026 11:43 AM
    3420 views | 3 replies
  • Remove line between last point of a curve and 1st point of next curve

    I have 4 variables - let's call them X, Y, sweep and batch. X and Y are numerical continuous, sweep and batch are numeric nominal. I want to plot XY line curves, per sweep and batch. The data looks like: X       Y       sweep      batch 0.10    0.20      1               1 0.11    0.30      1               1 0.15    0.36      1               1 0.12    0.22      1               2 0.13    0.31      1...

    Claire Claire
    Discussions |
    Feb 11, 2026 9:55 AM
    694 views | 10 replies
  • Toolbar Icon: stop all scripts

    Is there a built‑in way to mimic holding down ESC - to terminate the execution of running scripts? I’d like to add a toolbar shortcut that stops all running scripts. Issues: While one script is running, I can’t start another.Is there a command I can trigger, like Main menu("stop scripts")

    hogi hogi
    Discussions |
    Feb 11, 2026 3:30 AM
    154 views | 1 replies
  • Make Combined Data Table - various Group By columns - is there a BUG?

    Let's run this code: Names Default To Here(1); dt = open("$SAMPLE_DATA/Big Class.jmp"); fg = dt << Fit Group( Bivariate( Y( :height ), X( :weight ), Group By(:age), Fit Line ), Bivariate( Y( :height ), X( :weight ), Group By(:age), Fit Line ), Bivariate( Y( :height ), X( :weight ), Group By(:age), Fit Line ), Bivariate( Y( :height ), X( :weight ), Group By...

    miguello miguello
    Discussions |
    Feb 10, 2026 2:22 PM
    200 views | 1 replies
  • Error message - which line?

    JMP helps the user to find errors in the code. If an unresolved  name is used in the code, JMP stops the evaluation and shows an error message - pointing to the erronous line of code print(1); result = x + zzz_missing;     Let's make a slight change to the code. When JMP runs this code myFunc = Function( {x}, {}, result = x + zzz_missing; Return( result ); ); myFunc( 3 ); it returns again an ...

    hogi hogi
    Discussions |
    Feb 10, 2026 1:11 PM
    546 views | 8 replies

Latest Discussions

  • string - or function

    In a code, the coding for the expression handling was wrong and produced a surprising result.

    I reduced it to an interaction between "x()" [inside Variables (x(:column))] and a variable x.   an example: x= "hello"; type(x); // -> string X(5) // -> "hello"   After defining a variable x, I can use it as a function x(...) - with an arbitrary argument
    ...  and JMP will return the content of x.   someho...

    hogi hogi
    Discussions |
    Jan 28, 2026 3:59 AM
    266 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
    1076 views | 0 replies
  • Analyzing and Interpreting a Mixture of Mixtures Model

    I created a mixture of mixtures test plan. Now that the data are collected, I'm not sure how to interpret the results. Can I get help to verify that I designed the experiment correctly, and also walk me through how to interpret the results? I am studying the friction of asphalt surfaces, and specifically the effects of aggregate type, aggregate blend ratios on coarse and fine fractions, and asphal...

    bryantw bryantw
    Discussions |
    Dec 5, 2025 12:56 PM
    512 views | 0 replies
  • Bonferroni simultaneous confidence interval

       

    CurseOfDingo217 CurseOfDingo217
    Discussions |
    Dec 4, 2025 5:03 PM
    415 views | 0 replies
  • Calculating the missing values in AHP matrix

    Calculating the missing values in AHP matrix I have an incomplete AHP matrix, and I want to define the missing data using JMP, which method of screening values do you advice me to use, normal imputation,  SVD imputation, or RPCA imputation. My second question as one part of the AHP matrix is equal to 1 divided on the second part. How can I tell JMP that to screen only the half of missed value whic...

    NoSQLPlotPanda4 NoSQLPlotPanda4
    Discussions |
    Nov 16, 2025 10:48 PM
    517 views | 0 replies
view all discussions