cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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

  • scripting "add row" with dynamic list input

    Hi All,   I have a TableBox as report table in my journal. I can fill this table with "add row" which as input requires a list. This works when I directly write the list values in the function. See below. When I prepare the list however upfront and parse this into the function it doesn't work anymore See second example underneath. Why? The goal is to built this "add row" into a loop with each time...

    Bauke Bauke
    Discussions |
    Jul 3, 2020 2:48 AM
    2409 views | 3 replies
  • How to get max values accross multiple columns with missing data in their rows!

    Hi, Lets say we have data set that we want to get max values across the selected columns  dt = New Table( "Untitled", New Column( "a@b;2", Numeric, Set Values( [12, 33, 1] ) ), New Column( "b", Numeric, Set Values( [2, 11, 2] ) ), New Column( "c@d;3", Numeric, Set Values( [333, 1, 0] ) ) ); colnames = dt << getcolumnnames; use_cols = {}; include = {"@"}; For( j = 1, j <= N Items( include ),...

    joshua joshua
    Discussions |
    Jul 2, 2020 11:17 PM
    4160 views | 5 replies
  • How to change width of bars in histogram?

    Hello Everybody,I created two histograms but bars shown are very thin and sometimes it can be difficult do differentiate colors of Param1. Is there any way (by scripting as well) to make those bars a bit thicker? Best regards 

    lukasz lukasz
    Discussions |
    Jul 2, 2020 10:33 PM
    4962 views | 2 replies
  • JMP 15 assumes that an l-value in jsl is a column name - is this intended?

    JMP 15 assumes an l-value is a column name. This was not the behavior in earlier versions. Is this intended or is it a bug? To reproduce:dt=new table("test"); dt<<new column("a"); a=1;This gives an error in JMP 15 but not in JMP 14.

    ThomasZatValcon ThomasZatValcon
    Discussions |
    Jul 2, 2020 1:54 PM
    4109 views | 7 replies
  • How to make automated adjustment for Contour Plot --> specify contours ( number, max, min)

    Can anyone help on this?
    I am plotting multiple contour plot, and each of them has a different max,min.To avoid setting the wrong (max, min) of contour plot and making the graph blackout, I need to manually adjust each map (max, min and number). Any jmp script or jmp setting to automate the contour plot specify contours ( number, max, min) will help.Thank you

    Stokes Stokes
    Discussions |
    Jul 2, 2020 9:47 AM
    2049 views | 2 replies

Latest Discussions

  • JMP 15 assumes that an l-value in jsl is a column name - is this intended?

    JMP 15 assumes an l-value is a column name. This was not the behavior in earlier versions. Is this intended or is it a bug? To reproduce:dt=new table("test"); dt<<new column("a"); a=1;This gives an error in JMP 15 but not in JMP 14.

    ThomasZatValcon ThomasZatValcon
    Discussions |
    Jul 2, 2020 1:54 PM
    4109 views | 7 replies
  • How to make automated adjustment for Contour Plot --> specify contours ( number, max, min)

    Can anyone help on this?
    I am plotting multiple contour plot, and each of them has a different max,min.To avoid setting the wrong (max, min) of contour plot and making the graph blackout, I need to manually adjust each map (max, min and number). Any jmp script or jmp setting to automate the contour plot specify contours ( number, max, min) will help.Thank you

    Stokes Stokes
    Discussions |
    Jul 2, 2020 9:47 AM
    2049 views | 2 replies
  • K-fold Cross-validation for Neural Networks

    My question concerns the use of K-fold cross validation for artificial neural networks (NN). Specifically, I want to know where the final NN model parameters come from? Were they obtained by a fit to the entire data set? Or, were they from a fit to one of the K data sets consisting of K-1 folds that were used for training? If so, how was the best traing data set chosen? The SAS documentation is no...

    dcfroehlich dcfroehlich
    Discussions |
    Jul 2, 2020 6:40 AM
    3347 views | 2 replies
  • How to run jsl script in excel VBA?

    My JMP installation path is "c:\00\jmp\jmp.exe".
    I need to start jMP.exe in a VBA and have "jMP.exe" run the "c:\abc.jsl" file.I wrote VBA like this.The JMP program can be started, but JSL is not running.Sub test() Shell "c:\00\jmp\jmp.exe ""c:\abc.jsl""" End Sub

    lwx228 lwx228
    Discussions |
    Jul 1, 2020 5:49 PM
    7414 views | 16 replies
  • Remove columns from a table

    Hi everybody, I need to export several tables (txt files containing 20 columns) under JMP, but only 10 columns are useful for my use.How can I include in a script the deleting of specified columns? I have attached one example file: (1) the txt source (2) the JMP version with all columns (3) the final JMP version with 10 columns. Thanks in advance, Paul

    paul_apicella paul_apicella
    Discussions |
    Jul 1, 2020 3:29 AM
    3396 views | 2 replies

Latest Discussions

  • [JSL Contour Plot] Method of define contour plot, number, minimum, maximum

    The contour plot is very helpful to show 3D map, however the problem of defining the zone is always a trouble. In my typical jsl plot, I use something below to define the contour plot zone number = 8, maximum = 1.4, minimum =1. However, the table column :Length may change time to time, and the scale will have to be modified manually for each corresponding plot.   Does someone have experience how t...

    Stokes Stokes
    Discussions |
    Jun 25, 2020 12:09 PM
    1194 views | 0 replies
  • Impact of screen resolution on html output

    Hi, I'm preparing a dashboard using jmp that will be used for a daily meeting. It contains information in form of data tables and text boxes. In order to transfer text sizes and colors for the text as well as the data tables into the html output I transformed them into pictures (rep = dt << get as report(); pic = rep << get picture(); ). I set up all font sizes on my external monitor and it worked...

    Ole Ole
    Discussions |
    Jun 9, 2020 6:21 AM
    1174 views | 0 replies
  • How do I have two different chart types in a single graph using two axis?

    While doing some research to answer this question, I found this article on the JMP community that helped me get started. How do I do a combination bar and line plot using Overlay Plot?    Using the big class sample data example of height and weight I was able to create a bar chart for weight and a line plot for height on the same chart using the Overlay Plot.     To do this, first clear the row s...

    Bass_Masri Bass_Masri
    Discussions |
    Apr 28, 2020 4:28 PM
    4434 views | 0 replies
  • How do I calculate z-scores at different aggregation levels?

    Hello,  How do I use JSL to calculate Z-scores at different levels of aggregation? I am working with cancer mortality data (1999 - 2015) at the county-level. I need to calculate Z-scores to compare each county to the others within a state and all counties within the country. I cannot simply use the standardize function because it automatically takes an average of rates--which is invalid unless the...

    Jmsouch Jmsouch
    Discussions |
    Feb 26, 2020 7:04 AM
    2038 views | 0 replies
  • Calling Windows API ImageViewer.dll to display JPG files.

    I am working with a very large database of image files and want to be able to display the file for the user for visual inspection from a script. I have been able to get the following code to load the DLL but get an error requesting a signature argument. Does anyone know how to get a signature string from the system to pass to the DLL.   ERROR MESSAGE FORM LOG: Second argument to CallDLL must be a ...

    DMeakin1 DMeakin1
    Discussions |
    Jan 17, 2020 10:19 AM
    1885 views | 0 replies
view all discussions