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

  • Add a character to each row in a JMP column

    I have a JMP column with data where I would like to systematically add the same initial character to each entry.

    SpannerHead SpannerHead
    Discussions |
    May 20, 2025 10:51 PM
    972 views | 3 replies
  • How to remove /suppress menu bars from distribution analysis plots using JSL

    The output report generated by running a Process Capability analysis creates multiple, stacked, menu options to aid in interacting with the histogram and offers additional analysis options. When printing or saving the graph for reporting purposes these menu bars may not  be required and it would be helpful to suppress them from being displayed above the graph.  What is the best approach to remove ...

    DSchweitzer DSchweitzer
    Discussions |
    May 20, 2025 6:03 AM
    879 views | 2 replies
  • Column Selection issue

    I am creating a visualization, storing all open file names in a listbox. I then want to select a specific file and display all numeric columns from that file into a colListBox. Oddly, this seems to work only for a file I created myself and not for two additional files from the sample directory. I tried setting the table of choice to the 'current datatable' but I am unable to figure out how to swit...

    MarginalLlama65 MarginalLlama65
    Discussions |
    May 20, 2025 2:04 AM
    860 views | 2 replies
  • Can the vertical dividing line of the X-axis in the drawing only show part of it?

    Thanks Experts! dt=Open("$SAMPLE_DATA/Big Class.jmp"); p1=dt<< Graph Builder( Size( 534, 455 ), Show Control Panel( 0 ), Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( :height ), Y( :weight ) ), Elements( Position( 1, 1 ), Line( X, Y, Legend( 5 ) ) ), Elements( Position( 1, 2 ), Bar( X, Y, Legend( 7 ) ) ), SendToReport( Dispatch( {}, "Row", ScaleBox, {Ad...

    lala lala
    Discussions |
    May 19, 2025 9:45 PM
    3077 views | 14 replies
  • Rookie question on data table generation (extraction) from raw probe data

    Hi everyone, this is my first post in this community. I recently changed job and will do lots of prober bench test and data analysis. Our group use JMP. When I need to figure out something, I found google always directed me here and the warmhearted experts always gives professional answers. That's why I am here :). Right now, my probing test typically generate a big CSV file where the measurement ...

    HeroTom HeroTom
    Discussions |
    May 19, 2025 9:35 PM
    95665 views | 18 replies

Latest Discussions

  • Power Point Reports: graphs build automation

    I'm looking for a way to automate PowerPoint report generation in JMP. Specifically, I want to:
    - Maintain the same data structure and create a reusable configuration or setting file that allows me to generate PPT reports automatically.
    - Avoid the repetitive task of copy/pasting graphs into the "Journal" and then manually building the report. I have the below questions:
    1. Does JMP's "Action Recordi...

    ciobanu_leonard ciobanu_leonard
    Discussions |
    May 19, 2025 1:19 AM
    663 views | 1 replies
  • How to find the σ value of a normal distribution using JSL?

    Thanks Experts! NamesDefaultToHere(1); dt = Open("$SAMPLE_DATA/Big Class.jmp"); obj = dt << Distribution(Column(:Weight)); obj << Fit Normal;

    lala lala
    Discussions |
    May 17, 2025 5:44 AM
    613 views | 1 replies
  • How to plot only for the selected range of data without extracting subsets?

    For example, like this, I deliberately increased the data within the selected range:
    Age ==14 dt=Open("$SAMPLE_DATA/Big Class.jmp"); dt<<Sort(By( age),Order(Ascending),replace table); ca="NO";New Column(ca);Column(ca)<<Formula( if(row()==1|age!=lag(age,1),r=row();1,1+row()-r) );dt<<run formulas;Column(ca)<<deleteFormula; ca="height1";New Column(ca);Column(ca)<<Formula( if(age==14,height*100,height)...

    lala lala
    Discussions |
    May 16, 2025 6:22 AM
    2424 views | 9 replies
  • JMP Student Addition/ Python Connection

    Hi,   I was previously developing an app in JMP Pro 17. Inside the app, there is python code integrated into the JSL. Now, my university has swapped to the JMP Student Version 18. Does anyone know if this still allows for this python code?   Thanks, Kyle

    kterri3 kterri3
    Discussions |
    May 15, 2025 8:50 AM
    473 views | 1 replies
  • JMP Scripting - Presentation/Journal

    Hello JMP Team,   I need some help outputting my journal to a presentation. The thing is, I want the presentation to use the specific pptx theme. > 'jour << Save Presentation("' + tech_epi + "\\" + tech_epi + '.pptx", Template("C:\\Code\\Scripts\\PCM CPK Automation\\TrendChart-template.pptx"));\n'   Currently, inside my template.pptx, it only has 1 slide inside it. A empty title slide. But the tit...

    AdditiveLamb108 AdditiveLamb108
    Discussions |
    May 14, 2025 5:44 AM
    1540 views | 6 replies

Latest Discussions

  • Inquiry Regarding the Use of JMP and JMP Live (Suppress Eval?)

    Hello, I am a user of JMP Live.
    I am currently utilizing a simple function within JMP to leverage the Auto Refresh feature in JMP Live for dashboard purposes. However, while the function operates correctly on my PC, it does not work properly on JMP Live.Even though I have disabled "Suppress Eval" before executing Data Publish, when I later download the data, the column where the function should be ...

    DJ_Kim DJ_Kim
    Discussions |
    Feb 27, 2025 2:59 PM
    557 views | 0 replies
  • Streamlining Data Workflows With JMP & MATLAB

    Integrating tools like JMP and MATLAB offers a streamlined approach to engineering analysis, making workflows more efficient and reducing the need for redundant script rewriting. By leveraging JMP’s powerful data analysis and visualization capabilities alongside MATLAB’s robust computational tools, engineers can seamlessly combine the strengths of both platforms. This integration allows for the ra...

    brycerjs8 brycerjs8
    Discussions |
    Feb 18, 2025 7:07 AM
    578 views | 0 replies
  • 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
    612 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
    607 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
view all discussions