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

ようこそ JMP User Communityへ

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

学習のためのリソース

最新のディスカッション

  • Issue with concatenating and sort function

    I'm creating a table called "combinedTable" by concatenating two files and it saves just fine. But I would like to sort the concatenated table, but when I use the sort function it creates a new untitled table that pops up while saving the unsorted "combinedTable". What's wrong with my script?   <.... extractLast9Chars = Function({filename}, Substr(filename, Length(filename) - 12, 11) ); // Cre...

    CoxPorcupine721 CoxPorcupine721
    Discussions |
    Jan 9, 2025 12:12 PM
    778 表示 | 1 件の返信
  • ANN - Learning rate

    In the discussion among peers about an ANN analysis, the questions arose:
    - What learning rate was used in the analysis? Since I didn't use boosting (number of models is 0), is the 0.1 learning rate predefined by the platform relevant?

    - What means the value for the sum of squares to stop the calculation. Is it the sum of squares error (SSE) that is reported for each response?

    Thank you so much!

    SofiaSousa2412 SofiaSousa2412
    Discussions |
    Jan 9, 2025 11:18 AM
    882 表示 | 1 件の返信
  • Collecting user input via dialog box in a python script?

    I need to add collecting user inputs to an existing older python script (it initially used fixed number and location for files) ... I can get it to somewhat work using the "jmp.run_jsl()" function - it displays the dialog, gets the input and can print it out - but doesn't actually return anything to Python.  I've tried the Python Send and Get commands but the variable remains '0'. I started off ju...

    andersonmj2 andersonmj2
    Discussions |
    Jan 9, 2025 8:52 AM
    1426 表示 | 2 件の返信
  • Create/ add new columns using veribles

    Hey guys, I apologize for the confusing title. I wasn't sure how to phrase it.
    My question is: I have a code in which I'm adding new columns using long conditions.The conditions are the same for all the columns, except to one parameter that changes.
    Is there a way, instead writing each time the full code and the conditions with the new parameter value, create a template (like a function) that I will...

    Stas Stas
    Discussions |
    Jan 8, 2025 8:07 PM
    3213 表示 | 9 件の返信
  • Inquiry about Experimental Design with JMP

    Hello,
    I have a concern. I am a beginner in experimental design, and I am conducting formulation trials for medicines.To start, I screened a number of factors and variables to narrow down the factors for my experimental design.I would now like to optimize. The parameters are as follows:3 responses: Y1, Y2, Y34 factors, of which 3 are continuous (each with 3 levels), and 1 is categorical with 2 leve...

    PolygonGiraffe5 PolygonGiraffe5
    Discussions |
    Jan 8, 2025 5:39 AM
    1862 表示 | 4 件の返信

最新のディスカッション

  • ANN - Learning rate

    In the discussion among peers about an ANN analysis, the questions arose:
    - What learning rate was used in the analysis? Since I didn't use boosting (number of models is 0), is the 0.1 learning rate predefined by the platform relevant?

    - What means the value for the sum of squares to stop the calculation. Is it the sum of squares error (SSE) that is reported for each response?

    Thank you so much!

    SofiaSousa2412 SofiaSousa2412
    Discussions |
    Jan 9, 2025 11:18 AM
    882 表示 | 1 件の返信
  • 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
    628 表示 | 0 件の返信
  • Expression Handling in JMP: Tips and Trapdoors

    Collection of useful resources on the web:    There is a wonderful lecture by @joseph_morgan  in the Discovery Summit Series:
    https://community.jmp.com/t5/Abstracts/Using-JSL-to-Develop-Efficient-Robust-Applications-EU-2018-415/ev-p/849638 
    Joseph explains the secrets and possibilities of Expression Handling in JSL - and the trapdoors associated with the functionality.
    The lecture is based on the con...

    hogi hogi
    Discussions |
    Jan 7, 2025 11:55 AM
    2795 表示 | 3 件の返信
  • 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
    511 表示 | 0 件の返信

最新のディスカッション

  • 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
    628 表示 | 0 件の返信
  • 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
    511 表示 | 0 件の返信
  • 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
    479 表示 | 0 件の返信
  • ods output "DIFFS" in proc mixed

    Hi everyone,for my proc mixed I already got a table with Least-Squares Means, ods output "lsmeans".Additionally, I would like to have a table for the differences, ods output “DIFFS”.Can anyone tell me how to get to this output in the current jmp version (18.1.0)?Thanks in advance for your support.

    lvierbaum lvierbaum
    Discussions |
    Dec 12, 2024 5:32 AM
    749 表示 | 0 件の返信
  • Sample size for Reliability Life Test

    I have used the interval explorer for parametric reliability life test planning for sample size calculation of accelerated life test. Please can someone confirm if the sample size returned is the total sample size or sample size per stress levels? Assuming I have 3 temperature levels, do I use 75 samples per temperature level or 25?

    EngrAkin EngrAkin
    Discussions |
    Dec 11, 2024 7:11 AM
    722 表示 | 0 件の返信
すべてのディスカッションを表示