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

  • 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
    3424 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
    695 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
    155 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
    201 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

  • 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
    3424 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
    695 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
    155 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
    201 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
    416 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
    518 views | 0 replies
view all discussions