Is it possible to create a custom marker theme?
Hi, I am working on color/mark by, under row states. I was able to observe that there is a way to create custom color themes, but not for markers. Is there a way to do that? Thank you.
Find courses, tutorials, and lots of other methods of learning JMP.
view all learning resourcesHi, I am working on color/mark by, under row states. I was able to observe that there is a way to create custom color themes, but not for markers. Is there a way to do that? Thank you.
Hello everyone, kz = dthz << get rows where( Is Missing( :USL ) & Is Missing( :LSL ) );
dthz << delete rows( kz );
dthz << New Column( "FAIx", "character" );
dthz << begin data update;
dthz:FAIx << set formula( If( Col Number( :FAI#, :FAI# ) > 1, :FAI# || "_" || Char( Col Rank( :FAI#, :FAI# ) ), :FAI# ) );
dthz << end data update;...
Wait( 1 );//have to add
dt2 = dt1 << Join(
With( dthz ),
Select(
I would like to be able to have a local data filter upon clicking it make the y-axis resize in control chart builder. It works in graph builder but not control chart builder. maybe there is some jsl code or a check box? I also want it to work in JMP Live as this control chart will end up there. Thanks!
Hello all! This is my first post on this board so I apologize if it is not formatted correctly. I am in the process of coming up with a new script to analyze a 12 experiment stacked data set. I need to take some key phrases from our "Batch ID" column and organize them into other columns using a formula/script (preferably formula). So in this scenario I need the "B01" phrase to go into the Bioreact...
When triggering a Tables script from another script, how can I check if a table script was completed (without errors)? Adding a return function is not allowed: Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << run Script( "Bivariate" );
dt << New Script(
"test", JSL Quote(
print(1);
return(1);
),As String( 1 ));
dt << New Script(
"test2", JSL Quote(
New Names...
dt = Current Data Table();
//declaring variables
alpha_min = 14;
alpha_max = 18;
inc_val = 0.1;
this is the script, but i want to create bivariate plots of each of them without it showing up as multiple pages and also combine the reports to data table. thanks :)
//defining mu col names
mu_col = "mu";
//loop through alpha range and create new cols//
For( alpha = alpha_min, alpha <= alpha_max, ...
Hi everyone,I'm trying to build a workflow that will allow be to quickly look at numerous csv files that all have the same format, number of variables, column names etc. I didn't think it would be that complicated but I'm having trouble with the referencing. I've attached an example file (a deconstructed quantitative mass image with x, y pixel locations and mass counts at each pixel). I first bin ...
Hi, here's my current code that displays a popup window for user input. I want it so that for Level:, they can choose between two options (each option having a box next to it that the user can tick to select one). What would I have to add to my code to get that? Here's a picture of what I want the "level" user input to look like:Where the user can select one or the other before clicking "Save." ...
I have a data table where some of the columns have values that repeat because the program that generates the data holds the last value if a new one isn't given. This means I can't use the "select duplicate rows" option because that deletes all duplicates not just ones that are repeating. I also don't want to delete the rows, just the values in the "cells". 4.13.43.4 - delete value3.4 - delete val...
Hi, Im new to coding and having challenges constructing a functioning scriptdt = current data table();
//declaring and initializing variables//
lt_min = 1;
lt_max = 50;
RSquare_th = 0.9999;
count = 0;
//loop
while (count < 0.99999,
//calculate x for each y value
dt << New Column ("x", Numeric, formula(:y/ (:y + :avg_num)));
//plot bivariate
biv = dt << Bivariate(
Y( :x ),
X( :average_temp),
...
Hello!For example, using large class data:
Compare the height column and the weight column to see which column fits the sinusoidal distribution better.
The parameters of the sine curve are random. Thanks!
Has anyone created or heard of function for JSL that returns a bounded KDE (Kernel Density Estimator)? I'm aware of the KDE used inside of the distribution platform, but one is not able to provide bounds to the domain.
HI, I want set Scale Values in Graph Builder use Col Quantile function, but always something wrong. the red code have some problem. I need color scale as Quantile Graph Builder(
Size( 839, 726 ),
Variables( X( :Prober_X ), Y( :Prober_Y ), Color( :OpticalPower ) ),
Elements( Points( X, Y, Legend( 6 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
6,
Pr...
Just a heads up that we've been posting some additional JSL tricks on our LinkedIn Blog. We have a weekly series that's been running currently focused on our Visual Code Studio Extension for JMP. Week 1: https://www.linkedin.com/posts/predictum_automationjmp-series-use-vs-code-extension-activity-7062456347543359488-uzFu?utm_source=share&utm_medium=member_desktopWeek 2: https://www.linkedin.com/...
@PatrickGiuliano , As a response to our latest discussion : Re: How to overlay histograms in JMP Thanks a lot for the response. Also, 1) I would like to get more guidance on ' possibilities of iterating the Overlap function for more columns ( N number of Columns), if possible. the code for : Y Function(N, x): can be iterated ? Y Function(N, x);
For(i = 1, i <= N Col(xm), i++,
ym[i] = Min(Normal D...
Una introducción práctica para nuevos usuarios, usuarios con licencia de prueba o cualquier persona...
JMP Live offers JMP users collaborative analytics software to share analyses from JMP to a secure, c...
French Mastering JMP Transformez des données brutes en informations exploitables grâce à l’éditeur d...
EMEA Mastering JMP Experimenting with microbial and mammalian systems brings a multitude of data; bi...