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

  • What property would make window automatically stretch if I change size of display boxes within window?

    I have GUI with multiple display boxes, some of them are Col List boxes that user can resize.When they do that, window would make scroll bars. I don't want scroll bars. I want window to resize automatically to fit everything. Just like any platform (Fit Y by X for instance, does).I can't find a combination of messages that would do that work... Can somebody point me in right direction? Update:Here...

    miguello miguello
    Discussions |
    Feb 1, 2025 1:15 AM
    1736 views | 7 replies
  • Summarize Columns that contain more than one unique value

    I have a data table and I want to summarize the columns that contain more than one unique value including missing rows.  The columns with all rows the same are boring and I want to look at the more interesting ones only.

    SpannerHead SpannerHead
    Discussions |
    Jan 31, 2025 10:32 PM
    1652 views | 5 replies
  • Reset selection button on global filter

    hey everyone, I was wondering if anyone knew a way to use JSL to recreate the action of pressing this buttonI looked in the scripting index and didn't see anything that appears to related to this function. Thanks for any guidance! Steve

    shampton82 shampton82
    Discussions |
    Jan 31, 2025 9:52 AM
    721 views | 2 replies
  • How can make JSL read binary files faster?

    A binary file has a tabular data.
    It has 144 bytes per line,
    The first column is an 8-byte millisecond timestamp,
    Each subsequent column is split by 4 bytes.
    The key is that the following is only to extract the data of some columns.
    I wrote a JSL that can read data, but it is slower.
    Ask an expert to help fix it.co = 144; bb = Load Text File( file, blob() ); gs = 9; m = 0; g = 1; k = 1; ar = []; ar = J(...

    lala lala
    Discussions |
    Jan 31, 2025 12:35 AM
    2238 views | 8 replies
  • Interactive plots

    This stopped working after updating to the new version of JMP. I used to be able to make interactive html bar graphs. If I keep the syntax the same on the new JMP version, the plot remains interactive but the labeled values are rounded to the nearest whole number instead of including the decimals. When I add a line to display the decimal places, the graph no longer is interactive in html. Bar(
    X,
    Y(...

    LasersAreCool LasersAreCool
    Discussions |
    Jan 29, 2025 11:47 AM
    1852 views | 5 replies

Latest Discussions

  • Reset selection button on global filter

    hey everyone, I was wondering if anyone knew a way to use JSL to recreate the action of pressing this buttonI looked in the scripting index and didn't see anything that appears to related to this function. Thanks for any guidance! Steve

    shampton82 shampton82
    Discussions |
    Jan 31, 2025 9:52 AM
    721 views | 2 replies
  • How can make JSL read binary files faster?

    A binary file has a tabular data.
    It has 144 bytes per line,
    The first column is an 8-byte millisecond timestamp,
    Each subsequent column is split by 4 bytes.
    The key is that the following is only to extract the data of some columns.
    I wrote a JSL that can read data, but it is slower.
    Ask an expert to help fix it.co = 144; bb = Load Text File( file, blob() ); gs = 9; m = 0; g = 1; k = 1; ar = []; ar = J(...

    lala lala
    Discussions |
    Jan 31, 2025 12:35 AM
    2238 views | 8 replies
  • Can an IF formula use boolean character filtering?

    Hello all, I'm trying to run a column creation formula in JMP and I can't figure out how to get the system to perform the function I'm wanting.

    Specifically, there is a column of Serial Numbers of six characters.  The first character is always an "S" (for serial number).  The next 5 characters will always be a sequence of five numbers that begins either with a 7, a 5, or a 0 (representing three dif...

    NathanFisk NathanFisk
    Discussions |
    Jan 29, 2025 5:18 AM
    1097 views | 3 replies
  • jmp_python.exe vulnerabilities reported by Microsoft Defender Enterprise

    Microsoft Defender has been reporting vulnerabilities which can be reconciled by updating Python. We have 6 devices affected, but only 1 had Python installed manually. The other 5 trace back to jmp_python.exe. The JMP update function doesn't appear to affect Python. How do you intend to resolve the vulnerability reported?

    RobbCGO RobbCGO
    Discussions |
    Jan 27, 2025 11:43 AM
    1734 views | 3 replies
  • Retrieving Selected Items from Filter in JMP Graph Using JSL

    In JMP, the values entered in the Text edit box can be retrieved using get text(); for items in the List box, they can be retrieved using get items().
    Is there a way to get the currently selected items in the Filter of the current Graph? In the JSL below, I hope that when the Saving button above is pressed, I can obtain the items selected by the user in the Filter. How can I achieve this?
    For exampl...

    BabyDoragon BabyDoragon
    Discussions |
    Jan 26, 2025 7:55 AM
    830 views | 2 replies

Latest Discussions

  • How to adjust the size of R plot imported with get R graphics(); ?

    I'm trying to run R code in JMP to create a plot. I succeeded in importing the plot in png format, but failed to adjust the size of the plot. I can adjust the "plot_from_R" in png format with the set size(); function in jsl, but it is not proportional and distorted. How can I import plot_from_R in the size I want?   R Init(); R Submit( "\[ windows(300,100) #it doesn't work plot(function(x) dnorm(...

    CountableModel1 CountableModel1
    Discussions |
    Jan 15, 2025 4:01 PM
    614 views | 0 replies
  • Exceptions are the utilities Show, Write, and Print ...

    from: https://www.jmp.com/support/help/en/18.1/?os=win&source=application#page/jmp/advanced-expressions-macros-and-lists.shtml#  If you assign the expression x+y to a, quoting it as an expression with Expr, then whenever a is evaluated, it evaluates the expression using the current values of x and y and returns the result.
    Exceptions are the utilities Show, Write, and Print, which do not evaluate e
    ...

    hogi hogi
    Discussions |
    Jan 7, 2025 10:44 PM
    608 views | 0 replies
  • Extract Expr: Issue with scoped variable

    This works: Extract Expr(:height << set name( "new" ), :height );  But this one doesn't *):Extract Expr(myDataTable:height << set name( "new" ), myDataTable:height );Fortunately there is this dirty trick of Extract Expr (it automatically resolves every defined variable **) - which allows this workaround:x = Expr( myDataTable:height); Extract Expr(myDataTable:height << set name( "new" ), x ) *) why...

    hogi hogi
    Discussions |
    Jan 7, 2025 11:35 AM
    492 views | 0 replies
  • A custom function evaluates the return value

    fyi While debugging @replace Head, I noticed that a custom function evaluates the return values +1x compared to a standard function:myFunction = function({}, return(Expr(3*5))); add custom functions (newcustom function("my custom", "function", function({}, return(Expr(3*5))))); Show(myfunction()); Show(my custom:function())so maybe add another Expr() ...add custom functions (newcustom function("m...

    hogi hogi
    Discussions |
    Jan 3, 2025 2:05 PM
    465 views | 0 replies
  • help to get R squared predicted

    Hello!I installed a script from a community response regarding the calculation of R²pred, as shown in the image below (I'm using JMP 18 pro): (link da resposta do @erich_gundlach https://community.jmp.com/t5/JMP-Add-Ins/Predicted-R-square-calculator/ta-p/39927)  In PRESS, R²pred didn't appear. (Press is low because I haven't reduced the model yet, don't worry =))  I really need to show these R²pre...

    ivanpicchi ivanpicchi
    Discussions |
    Dec 4, 2024 10:21 AM
    667 views | 0 replies
view all discussions