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

  • How do functions have access to script variables when those script variables are not passed to the function?

    I have a function with no input parameters, that uses a script variable. 
    From my understanding with other programming languages, function should only have access to variables passed to or defined in the function.  When I run the script below it returns 14. Why does this work? Is there a way to make the variables used by the function more exclusive? scriptVar = 14; myFunction = function({},{default...

    Kelly Kelly
    Discussions |
    Jun 18, 2020 2:30 PM
    4730 views | 7 replies
  • Changing character column to date colum

    Hi all,assume we have a table with a column of type character with dates of the format "d.m.y". Example given:Character Dates05.08.201517.03.201612.05.2016I now want to convert the character dates to numeric dates. I know that this is a common issue with lot´s of stuff to read about. However, what i don´t get is the following:If i right click on the column, got to column info and change the data t...

    vkessler vkessler
    Discussions |
    Jun 18, 2020 11:30 AM
    20806 views | 6 replies
  • How do YOU deploy models built in JMP? Surveying the group..

    I am considering changes to how we move from JMP to an 'online' model. I know many ways are possible, what are you doing?
     
    Some possibilities:

    Deploy with JMP - run a script on some frequency
    Run exported model within BI software
    Run exported model with custom code - Python, R, C
    SAS
    SQL
    Use JMP to explore data and choose features, then rebuild and deploy model in other software
    Something else?

    ih ih
    Discussions |
    Jun 18, 2020 11:09 AM
    1713 views | 1 replies
  • How do I find rows with the same values for any two columns in a given column?

    For example, columns 1 —— 3 here:dt = Open( "$SAMPLE_DATA\Missing Data Pattern.jmp" ); dt<<New Column("T1",formula(If( As Column( 1 ) == As Column( 2 ) | As Column( 2 ) == As Column( 3 ) | As Column( 1 ) == As Column( 3 ), 1)));dt<<run formulas;Column("T1")<<deleteFormula;Thanks!

    lwx228 lwx228
    Discussions |
    Jun 18, 2020 2:14 AM
    4059 views | 5 replies
  • Fill color for multiple reference lines

    Hi,I have added multiple reference lines to the axis axis of a graph.I´m doing this by looping through a reference line table (DarkLight) based on the main table.Oxygen consumption = SableData << Graph Builder(
    Size( 1322, 944 ),
    Variables(
    X( :Name( "Time since first dose-[hours]" ) ),
    Y( :Name( "VO2-[ml/min]" ) ),
    Overlay( :Treatment )
    ),
    Elements( Points( X, Y, Legend( 4 ) ) )
    );

    For( i = 1, i <= N Rows
    ...

    JulieSAppel JulieSAppel
    Discussions |
    Jun 17, 2020 11:33 PM
    4903 views | 7 replies

Latest Discussions

  • How do YOU deploy models built in JMP? Surveying the group..

    I am considering changes to how we move from JMP to an 'online' model. I know many ways are possible, what are you doing?
    &nbsp;
    Some possibilities:

    Deploy with JMP - run a script on some frequency
    Run exported model within BI software
    Run exported model with custom code - Python, R, C
    SAS
    SQL
    Use JMP to explore data and choose features, then rebuild and deploy model in other software
    Something else?

    ih ih
    Discussions |
    Jun 18, 2020 11:09 AM
    1713 views | 1 replies
  • Local data filter and Custom Graph Script

    I am using the approach suggested by @XanGregg in this post to make vector plots in Graph Builder. However, it seems the local data filter does not work on the arrows. It only filters the points but not the arrows. Do you have any suggestion on how to fix it?

    shasheminassab shasheminassab
    Discussions |
    Jun 17, 2020 4:06 PM
    3821 views | 6 replies
  • Graph Builder: How To Make Row Labels Appear Above Error Bars?

    I have a bar chart in graph builder with "label by row" turned on. I'm also using custom error bars. The issue is the error bars lay over the label making the label hard to read. For one of my labels I added a period and a paragraph space. This worked for that particular label since the period was hidden by the error bar. However, it does not work with all of them as the error bar is not high enou...

    Shelsi Shelsi
    Discussions |
    Jun 17, 2020 5:45 AM
    2363 views | 1 replies
  • Interpreting Mixed Model

    Hi All, Several questions regarding linear mixed models.1) In the "Fit Mixed" personality is there a way to get the prediction expression (Y=Bx+Zu+E), I can get it from other model personalities but can't find it in the "Fit Mixed" personality2) I am looking at swimming performance in fish, I have two continuous fixed effects and their interaction fit against a continuous response with individual ...

    Stephen2020 Stephen2020
    Discussions |
    Jun 16, 2020 12:48 PM
    1710 views | 1 replies
  • How to compare paired data sets include the variation on the samples

    Feeling i meeting the wall with comparing these two methods I'm testing.I have 2 methods (1 and 2) both analysed on the same sample. For both methods triplicates have been measured for each sample. So now I want to compare method 1 vs 2 including the know variation to see if statistically significant?    

    ANLUN ANLUN
    Discussions |
    Jun 16, 2020 10:57 AM
    2613 views | 2 replies

Latest Discussions

  • 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
    1171 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
    4430 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
    2036 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
    1883 views | 0 replies
  • Running script from command line on MAC

    Not a mac person.  Does anyone know how to run a jsl script from command line on a mac?  I specifically mean WITHOUT "//!" at the top of it.     I have this but it only opens the file unless I have the "//!" open -g -W -a /Applications/JMP\ Pro\ 15.app/ $(pwd)/myscript.jsl

    vince_faller vince_faller
    Discussions |
    Jan 10, 2020 2:26 PM
    1558 views | 0 replies
view all discussions