キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
JMP Bar Chart

ようこそ JMP User Communityへ

質問をし、回答を得たり、他のJMPユーザーと交流しましょう

学習のためのリソース

最新のディスカッション

  • Selectively import CSV files based on content.

    I have built a script based on the information I found in this post. Solved: Re: Open Multiple Data Files Recursively - JMP User Community Great suggestions in there.  The remaining difficulty I have is that the finally assembled file is very large and I wind up throwing much of it away because it is not relevant.  This is probably a stretch but can JMP select CSV files based on their content befo...

    SpannerHead SpannerHead
    Discussions |
    Aug 30, 2024 12:34 PM
    926 表示 | 1 件の返信
  • Dynamic y axis range in variability chart

    I have the following variability chart and I am implementing that by Parameternebs = {};
    For Each({pChoice}, parameterChoice,
    lub << append(Text Box(pChoice));
    lub << append(neb = Number Edit Box(42));
    Insert Into(nebs, neb);
    );


    vals = nebs << get;


    varchart = Variability Chart( Y( :Value), X( :Time Point, :Storage Condition, :Level ), Std Dev Chart( 0 ), By( :Parameter ), SendToR
    ...

    Georgios_Tsim Georgios_Tsim
    Discussions |
    Aug 30, 2024 2:28 AM
    1093 表示 | 1 件の返信
  • Graph builder using lines to connect individual data points

    Dear community,I was using graph builder to make a dotted plot like below. I was trying to connect individual dots using lines, specifically I want to connect the green dot from 7mer_AUC to the green dot from the 8mer-AUC, and red dot to the other red dot, blue dot to the other blue dot in the 8h panel, then do the same for 24h and 48h panels. When I used "Add line", it only connect the means of t...

    xliu xliu
    Discussions |
    Aug 30, 2024 1:18 AM
    1517 表示 | 2 件の返信
  • search substring from vareity of string

    I have a column with name of failure, which contains all variety of strings. I like to search error code with start of "ex". the error code is 10-character string with start of "ex". and put the 1st error code into column of "1st code", all error codes into column of "all codes. what formula is set to both columns? sorry to bother again. I need to quickly make my work in hands closed firstly, then...

    ReliabilityWolf ReliabilityWolf
    Discussions |
    Aug 30, 2024 1:16 AM
    4179 表示 | 12 件の返信
  • WHAT ARE THE PARTICULAR BENEFITS OF OMARS DESIGNS?

    There are many powerful JMP DOE tools with proven succes over a long time on the other hand recently a lot is written and published on OMARS Designs.I would like to ask experienced DOE users what are the particular benefits of these new kind of designs in addition to what is available on the JMP DOE menu? On what kind of particular cases would you advice to use OMARS? Are there cases that can't be...

    frankderuyck frankderuyck
    Discussions |
    Aug 30, 2024 12:15 AM
    3681 表示 | 9 件の返信

最新のディスカッション

  • Selectively import CSV files based on content.

    I have built a script based on the information I found in this post. Solved: Re: Open Multiple Data Files Recursively - JMP User Community Great suggestions in there.  The remaining difficulty I have is that the finally assembled file is very large and I wind up throwing much of it away because it is not relevant.  This is probably a stretch but can JMP select CSV files based on their content befo...

    SpannerHead SpannerHead
    Discussions |
    Aug 30, 2024 12:34 PM
    926 表示 | 1 件の返信
  • Graph builder using lines to connect individual data points

    Dear community,I was using graph builder to make a dotted plot like below. I was trying to connect individual dots using lines, specifically I want to connect the green dot from 7mer_AUC to the green dot from the 8mer-AUC, and red dot to the other red dot, blue dot to the other blue dot in the 8h panel, then do the same for 24h and 48h panels. When I used "Add line", it only connect the means of t...

    xliu xliu
    Discussions |
    Aug 30, 2024 1:18 AM
    1517 表示 | 2 件の返信
  • Help with default view summary statistics

    Folks,
    I use .jmp 14 for analysis. I am looking for a way to only permanently display only 4 statistics of use to me -Mean, Std.Dev, Mode and Observations. I manually uncheck it each time by clicking on summary. I have also checked under preferences in var chart and unchecked the other non relevant statistics apart from these 4 but it doesn't work. Is that a limitation with. Jmp 14? Any help would ...

    BetaPanda273 BetaPanda273
    Discussions |
    Aug 29, 2024 11:39 PM
    1478 表示 | 3 件の返信
  • All possible models multiple regression - assessing R2 change between models

    Hi All, Relatively new to JMP. I have performed an all subsets multiple regression as I am attempting to find the best model of IVs that predicts my DV. Based on AICc, BIC and Mallows there is a model that appears best. However, there is another model that has one additional variable that has similar AICc etc (though worse), but a better adjusted R2. Is there a way in JMP of statistically comparin...

    philc86 philc86
    Discussions |
    Aug 29, 2024 11:10 AM
    2692 表示 | 5 件の返信
  • Change order of x-values in bar chart

    I am struggling to change the order of the x-axis values of my bar chart. How should I do this?

    CoffeeLover1997 CoffeeLover1997
    Discussions |
    Aug 29, 2024 8:05 AM
    867 表示 | 1 件の返信

最新のディスカッション

  • AlT two factors with example fail

    Could you provided me some example, file,with example of ALT, two faftors, for example temerature and humidity. Please

    Juancho97 Juancho97
    Discussions |
    Aug 25, 2024 12:16 PM
    643 表示 | 0 件の返信
  • Machine data source list remove in "Database Operations"

    I used "File"-->Database-->Open table-->New connection to setup some tables from DB. but I found my list for new connections becomes longer and longer. like the attached pic. I did not found there is a way that i can remove any items from the connection list. the question is that is there a way that i can delete them. Thanks in advanced. KRSean

    Sean_ShCn0 Sean_ShCn0
    Discussions |
    Aug 22, 2024 7:24 AM
    934 表示 | 0 件の返信
  • Write Data from Data Table to Database

    Hello JMP-Community,I am searching your help here because I didn't found a sufficent solution for myself in other posts. It is about writing content of a data table into a table of a database.For that I wrote this little function: myInsertInto = function({dt, dbConnection, destinationName}, cols = dt << GetColumnNames(String); rows = dt << Select All Rows << GetSelectedRows; show(cols, rows); ...

    DBo_94 DBo_94
    Discussions |
    Aug 22, 2024 6:38 AM
    710 表示 | 0 件の返信
  • Is there a way to tell LCA that the rows are ordered by class?

    Typical dataset: 120-200 rows, 15 classes. Rows are known to be ordered by class. What is unknown is where the 'fences' between classes are. As-is -- i.e., without taking row order into account -- LCA correctly classifies about 94% of rows. My intuition is that if I knew how to tell the algorithm that the rows are grouped by class on input, we'd be at 100%. Visual, in case my use of 'grouped by' i...

    mtowle419 mtowle419
    Discussions |
    Aug 15, 2024 5:03 PM
    678 表示 | 0 件の返信
  • latin hyper cube

    Hi there, 

    I am attempting to run latin hyper cube with three continuous and one categorical factors, but the option is not available except for fast flexible filing design; can anyone assist me with this? thanks in advance

    H6Habib H6Habib
    Discussions |
    Aug 14, 2024 1:58 PM
    785 表示 | 0 件の返信
すべてのディスカッションを表示