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

  • Calculating Mode for String Data with Grouping

    I attempted to calculate the mode of column A, grouped by column B, using the Col Mode(:A,:B) function. However, since column A contains string data, no value was output. I then discovered that Mode(:A) can obtain the mode even for string data. The problem now is that I don't know how to perform the grouping. How should I construct the formula?

    TamedZebra TamedZebra
    Discussions |
    Mar 10, 2026 10:19 PM
    810 views | 11 replies
  • JSL: copy table script(no data)

    what is the JSL command for copy table script(no data)?

    hogi hogi
    Discussions |
    Mar 10, 2026 2:10 PM
    265 views | 2 replies
  • Passing a variable to Map Role( Shape Name Use(...))

    I'm playing around with applying come custom map shapes, I've got them to work in the static case:   dt_Wafer:Die << Set Property("Map Role", Map Role(Shape Name Use("N:/JMPMaps/X1234-Name.jmp","Name")));   But trying dynamically is messing up the file name (dt_Info:Product Name[1] is "X1234")   maps = "N:/JMPMaps/"; ProductName = dt_Info:Product Name[1];
    dt_Wafer:Die << Set Property("Map Role", M
    ...

    EOwl EOwl
    Discussions |
    Mar 10, 2026 8:33 AM
    188 views | 1 replies
  • Saving Confidence/Prediction Limit for Model With Nested Effects

    Hi, Does anyone know why you cannot save confidence/prediction limit formulas for a model that contains nested effects? Is there any way around this? Robert

    rcast15 rcast15
    Discussions |
    Mar 10, 2026 8:03 AM
    173 views | 0 replies
  • Why is it not possible to generate this graph in JMP?

    x axis: (first) Family Car
    top graph: % of factor by sex
    bottom graph: % of factor by age Semiconductor Industry:
    car = Lot
    age = classification 1
    sex= classification 2



    The closest I can get without changing the data table:   Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" ); dt << New Column( "First Family Car", Character, Formula( Word( 1, :family cars, "," ) ) ); Graph...

    hogi hogi
    Discussions |
    Mar 9, 2026 3:52 PM
    491 views | 2 replies

Latest Discussions

  • Saving Confidence/Prediction Limit for Model With Nested Effects

    Hi, Does anyone know why you cannot save confidence/prediction limit formulas for a model that contains nested effects? Is there any way around this? Robert

    rcast15 rcast15
    Discussions |
    Mar 10, 2026 8:03 AM
    173 views | 0 replies
  • Why is it not possible to generate this graph in JMP?

    x axis: (first) Family Car
    top graph: % of factor by sex
    bottom graph: % of factor by age Semiconductor Industry:
    car = Lot
    age = classification 1
    sex= classification 2



    The closest I can get without changing the data table:   Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" ); dt << New Column( "First Family Car", Character, Formula( Word( 1, :family cars, "," ) ) ); Graph...

    hogi hogi
    Discussions |
    Mar 9, 2026 3:52 PM
    491 views | 2 replies
  • Variations of the SILENT IGNORE Trap

    In some cases, JMP makes it very hard for a user (or AI) to debug the code.

    from: https://community.jmp.com/t5/Discussions/AI-scripting-misleading-log/m-p/929994/highlight/true#M108698   @Craige_Hales wrote:
    objects ignore messages they don't understand 

    Here is a wish to remove the issue: chatty mode() for AI debugging 

    and here are some examples:

    hogi hogi
    Discussions |
    Mar 9, 2026 12:57 PM
    234 views | 2 replies
  • Interpreting a Mixture of Mixtures Study

    Can I get some help interpreting the results of my mixture of mixtures study? I'm studying the friction of asphalt, specifically the effects of aggregate type, aggregate blend ratios at coarse and fine fractions, and asphalt gradation type. Aggregate Types, 6 total:
    - Class A (high quality): A1, A2, A3
    - Class B (low quality): B1, B2, B3 Aggregate Blending (Coarse and Fine portions)
    - Blend percent o...

    bryantw bryantw
    Discussions |
    Mar 9, 2026 12:56 PM
    1170 views | 9 replies
  • Actions missed by Advanced Log/Workflow Builder

    container to collect actions which are not recorded yet.

    NB:
    "Workflow Builder + Add-Ins"  is already discussed in this post:
    Workflow Builder + Add-Ins 
    and this wish list entry: 
    Workflow Builder + AddIns    [More Topic Containers like this]

    NB: If an action gets recorded by new version of Jmp, I  try to update the posts.
    @ Jmp support, development: If I missed to do so, feel free to change the respec...

    hogi hogi
    Discussions |
    Mar 9, 2026 12:41 PM
    17717 views | 38 replies

Latest Discussions

  • Saving Confidence/Prediction Limit for Model With Nested Effects

    Hi, Does anyone know why you cannot save confidence/prediction limit formulas for a model that contains nested effects? Is there any way around this? Robert

    rcast15 rcast15
    Discussions |
    Mar 10, 2026 8:03 AM
    173 views | 0 replies
  • Surface Plot resets between filter selections

    This is a new bug, or at lease JMP never behaved like this before.

    I set up a surface plot of an average of individuals and adjust the viewing angle to show relevant features of the surface. 
    I have a local filter selecting for individuals, when I click on the individual 1, looks great, click on individual 2, looks great, click on individual 3, it completely resets the view - losing the "apples to a...

    CG2 CG2
    Discussions |
    Mar 9, 2026 12:23 PM
    193 views | 0 replies
  • JMP Window ordering and confusion

    How do I get newly opened JMP files to appear as the top window in my apps. How many times have I mistaken the newly opened for the currently opened. Very, VERY annoying.

    EQ_Engineer EQ_Engineer
    Discussions |
    Feb 26, 2026 2:44 PM
    213 views | 0 replies
  • Color Coding Categorical Report

    When I create a Categorical Report to look at data, I would LOVE if the "Total"/"Total Responses" line could be bold or in a different color to easily stand out. Is this possible to do?

    BackwardWords96 BackwardWords96
    Discussions |
    Feb 19, 2026 10:36 AM
    152 views | 0 replies
  • 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
view all discussions