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

  • Zスコアの標準化

    御社のJMP Ver18のユーザーです。 悪性腫瘍の予後因子としての栄養・免疫スコアを研究しています。 肺癌手術患者について術前のC-CONUTスコア、GNRI、NLR、Hb、Pltといった免疫栄養スコアの連続変数と患者予後(OS)や生存日数といったデータが統計解析ソフトJMP内に作成してあります。これら変数を用いてOSを予測するための新規マーカーの開発を試みています。 Zスコアの標準化から Research score(continuous) IHPI = β1×C-CONUT + β2×GNRI + β3×log(NLR) + β4×Hb + β5×Plt + β6×Weight loss といったIntegrated Host Prognostic Index (IHPI)作成を行いたいと考えております。 JMP ver18で行いたいと考えていますが、うまくいきません。 まずは①が...

    Masa1972 Masa1972
    Discussions |
    Feb 19, 2026 5:14 PM
    248 views | 1 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
  • JMP Pro - Is there an option to restrict JMP Pro to std JMP functionality?

    When discussing topics with colleagues or giving advice I am often unsure, whether what I am recommending is feasable for std JMP users.  I do not want to anoy anyone by suggesting something they cannot do.

    PeSch PeSch
    Discussions |
    Feb 19, 2026 2:54 AM
    296 views | 3 replies
  • Good fraction of space, but low power of DoE

    Hello JMP community, I am creating a DoE design with 2 continuous, 1 categorical (6 levels) and 1 categorical (2 levels). When I create a D-optimal design for this study, I see that the power for detecting the interactions that I am interested is quite low (Anticipated coefficient = 5, Power =0.61). However, the fraction of design plot looks quite good. 95% of the fraction of space lies below the ...

    Coverbird30 Coverbird30
    Discussions |
    Feb 19, 2026 1:51 AM
    554 views | 2 replies
  • Parsing open form comments

    Hello, JMP 18.0 I have a tool log that operators have to put a comment in if an error occurs.  The comments are not standardized and vary by operator.  I would like to parse this comment column to find patterns in the log to be able to diagnosis or predict issues.  Any thoughts?

    PhotoBluur PhotoBluur
    Discussions |
    Feb 18, 2026 5:21 AM
    516 views | 5 replies

Latest Discussions

  • Zスコアの標準化

    御社のJMP Ver18のユーザーです。 悪性腫瘍の予後因子としての栄養・免疫スコアを研究しています。 肺癌手術患者について術前のC-CONUTスコア、GNRI、NLR、Hb、Pltといった免疫栄養スコアの連続変数と患者予後(OS)や生存日数といったデータが統計解析ソフトJMP内に作成してあります。これら変数を用いてOSを予測するための新規マーカーの開発を試みています。 Zスコアの標準化から Research score(continuous) IHPI = β1×C-CONUT + β2×GNRI + β3×log(NLR) + β4×Hb + β5×Plt + β6×Weight loss といったIntegrated Host Prognostic Index (IHPI)作成を行いたいと考えております。 JMP ver18で行いたいと考えていますが、うまくいきません。 まずは①が...

    Masa1972 Masa1972
    Discussions |
    Feb 19, 2026 5:14 PM
    248 views | 1 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
  • JMP Pro - Is there an option to restrict JMP Pro to std JMP functionality?

    When discussing topics with colleagues or giving advice I am often unsure, whether what I am recommending is feasable for std JMP users.  I do not want to anoy anyone by suggesting something they cannot do.

    PeSch PeSch
    Discussions |
    Feb 19, 2026 2:54 AM
    296 views | 3 replies
  • Parsing open form comments

    Hello, JMP 18.0 I have a tool log that operators have to put a comment in if an error occurs.  The comments are not standardized and vary by operator.  I would like to parse this comment column to find patterns in the log to be able to diagnosis or predict issues.  Any thoughts?

    PhotoBluur PhotoBluur
    Discussions |
    Feb 18, 2026 5:21 AM
    516 views | 5 replies
  • Continuous Process Verification in Biotech

    Hello, I'm spent many hours trying to generate control charts for one of my company's partners.  I'm struggling for the best approach to do this with JMP.  I've tried a few different ways and haven't found a way that works simply.  Trying to lock in control limits, but then the lock goes away.

    dbriggs dbriggs
    Discussions |
    Feb 17, 2026 12:11 PM
    178 views | 1 replies

Latest Discussions

  • 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
    265 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
    1074 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
    508 views | 0 replies
  • Bonferroni simultaneous confidence interval

       

    CurseOfDingo217 CurseOfDingo217
    Discussions |
    Dec 4, 2025 5:03 PM
    414 views | 0 replies
view all discussions