cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Learning Resources

Latest Discussions

  • JSL Scripts not running in JMP 15

    My scripts do not run when I try them in JMP 15. They work fine in JMP14 (and have in JMP13 too).The error message I get in the log (see example below) is familiar to me. I know it since JMP12 and it only happend before when I ran a script and had the log open. The solution was to just close the log.In JMP 15 the log is open by default and I can't close it. The preference "Log Open Strategy( "Expl...

    Ole Ole
    Discussions |
    Nov 17, 2019 11:45 PM
    6348 views | 4 replies
  • get bivariate plot as scritable

    Hello, how can I get a bivariate plot as an object in jsl script? like, if I plot this graph below thru the regular jmp GUI "FIT X by Y" and then I want to write something like  "Big Class" << get plot as scriptable;

    avner8943 avner8943
    Discussions |
    Nov 17, 2019 12:52 PM
    3001 views | 1 replies
  • I want change the numbers, 1 ~ 9 to 01 ~ 09 in column

    Hello, I have two column, Lot and wafer as shown below.How can I make wafer_rev column, where the single digit values (1~9) are changed to double digits (ex, 01, 02, ,,,,09. No change in 11~20) Is there a simple script for this ?Please advise me. LotwaferWafer_revDA1101FA2303UJ31111DS2903 Thank you in advance

    Myni Myni
    Discussions |
    Nov 17, 2019 6:27 AM
    1649 views | 1 replies
  • JMP 15: Log is empty when using Projects

    I am trying to fix a script that broke following the upgrade to JMP 15, however the log is also jacked. When executing scripts from within Project windows, nothing is recorded. The scripts *are* executing, just not being written to the log. Suggestions?

    ionatx ionatx
    Discussions |
    Nov 15, 2019 1:04 PM
    4013 views | 4 replies
  • How do I put a journal inside a dashboard?

    I am creating a dashboard using JMP App(). Within this function I have it run a script from a data table (DataTable1).  Report1 = Platform( DataTable1, DataTable1 << Run Script("Mean_Graph_Builder") ); The script creates a plot using graph builder and the plot is added to the dashboard. I would like to also add a journal to this dashboard. I have a script for to create my journal but I can't fi...

    Kelly Kelly
    Discussions |
    Nov 15, 2019 9:38 AM
    5948 views | 7 replies

Latest Discussions

  • get bivariate plot as scritable

    Hello, how can I get a bivariate plot as an object in jsl script? like, if I plot this graph below thru the regular jmp GUI "FIT X by Y" and then I want to write something like  "Big Class" << get plot as scriptable;

    avner8943 avner8943
    Discussions |
    Nov 17, 2019 12:52 PM
    3001 views | 1 replies
  • I want change the numbers, 1 ~ 9 to 01 ~ 09 in column

    Hello, I have two column, Lot and wafer as shown below.How can I make wafer_rev column, where the single digit values (1~9) are changed to double digits (ex, 01, 02, ,,,,09. No change in 11~20) Is there a simple script for this ?Please advise me. LotwaferWafer_revDA1101FA2303UJ31111DS2903 Thank you in advance

    Myni Myni
    Discussions |
    Nov 17, 2019 6:27 AM
    1649 views | 1 replies
  • Does JMP calculate the "cumulative density function" of CDF?

    I'm searching for this code for the documentation, but I don't know what it means. Get expert help.Thanks! Names Default To Here( 1 ); /* Generate random values, Normal(0,1) */ Y = J( 150, 1, Random Normal() ); /* CDF function */ {Quant, CumProb} = CDF( Y ); Wait(0); /* Draw empirical and theorical CDF */ New Window( "Empirical CDF", Graph Box( X Scale( -3, 3 ), Y Scale( 0, 1 ), Pen Color...

    lwx228 lwx228
    Discussions |
    Nov 13, 2019 12:21 PM
    2700 views | 2 replies
  • General stat question - Nominal logistic regression vs Wilcoxon

    Hello, please help me to understand this - working with large datasets with continuous variables - most of the times I use models to a binary outcome (alive/dead).Many of my continuous variables are not normally distributed, hence I usually approach the test by Fit Model (Y=outcome, model effects - weight, nominal logistic). The distribution of the primary variable - weight:The outcome of the logi...

    marc1 marc1
    Discussions |
    Nov 13, 2019 9:21 AM
    2761 views | 3 replies
  • Blocking ignored

    Good day.I need to evaluate data which includes blocking.JMP keeps telling me: Blocking ignored because cell counts are unequal.How do I fix this?

    Sonja_Gevers Sonja_Gevers
    Discussions |
    Nov 13, 2019 8:22 AM
    1520 views | 1 replies

Latest Discussions

  • How can I run a .py python script and python scripts compiled as .exe from JMP

    Hello,  So I've written a JMP UI, and once I gather data from the user I have a button that dumps the form data to a CSV.Now I need to launch my python script and other .exe  (as an administrator), my python scripts pick up the user input from the CSV and perform the next steps.Right now it's a .py but I may need to run it through py2exe and compile it into an exe later so a solution that supports...

    xxvvcczz xxvvcczz
    Discussions |
    Oct 30, 2019 6:44 PM
    1930 views | 0 replies
  • Analysis of covariance (ANCOVA) for Split plot Design

    Hi, I have a problem where I want to do ANCOVA and It is new for me.We have,Main plot data (2 treatments)Subplot data (10 treatments)Yield datawe want to add lodging (%) score as a covariate. How to do it? (I have seen some video tutorial from Youtube but its not easy to understand for me) Your cooperation will be highly appreciated.

    Harun-Or-Rashid Harun-Or-Rashid
    Discussions |
    Oct 29, 2019 9:03 PM
    1299 views | 0 replies
  • Send Expects Scriptable Object in access or evaluation of 'Send' Error

    I create a new window with variability chart, and put into journal. After that i want to save into pdf. But at the last line to save into PDF, it give me error like below. and nothing is saved into pdf. Need some advice which part i am doing wrong?  ErrorSend Expects Scriptable Object in access or evaluation of 'Send' , report_R235 << /*###*/SavePDF( "C:\LimTY\NXP\Product\Pegasus\Characterization\...

    OneNorthJMP OneNorthJMP
    Discussions |
    Oct 10, 2019 8:43 PM
    1338 views | 0 replies
  • Extract Report Data and Export it to Excel

    I am totally new to the JMP community and have a limited coding background. I am working with Life Distributions (Weibulls mostly), and I would like to create an Add-in that can do the following tasks once I have selected the best distribution fit: 1. Save specific report data from distribution (see the data tables in red) 2. Export the data into an excel sheet 3. Have the add-in button available ...

    jemairsmartes jemairsmartes
    Discussions |
    Sep 11, 2019 10:27 AM
    2136 views | 0 replies
  • How to Add Profit Matrix to Neural Net Confusion Matrix

    Hi all, I'm using a neural net to predict whether or not a customer will prefer to buy retail items at a markdown or if they are likely to buy full-price (i.e., "bargain buyers" vs. traditional shoppers). I'd like to incoporate the opportunity cost of a false positive (giving discounts to what would otherwise be a full-price shopper) using a profit matrix, but changing values on the matrix in the ...

    GhostBen GhostBen
    Discussions |
    Aug 5, 2019 8:00 PM
    1376 views | 0 replies
view all discussions