Questions tagged [sas-jmp]

JMP is a "Data Discovery" tool from SAS Institute. It is used for combining advanced data visualization techniques with powerful statistical tools.

JMP is a software product offered by SAS Institute that, in contrast to base SAS software, is focused on data visualization. While it has much of the same statistical power of SAS and is easily linked to various SAS products, its focus is on the visual. Producing graphs easily that allow you to see trends in your data, it complements the more numbers-focused base SAS offering and is used across all major industries.

JMP is pronounced "Jump", intended to evoke the idea of making a 'jump' in understanding by seeing your data in a visual manner.

The product website is jmp.com, and the documentation can be found on their support site.

58 questions
0
votes
0 answers

Copying a jmp script from one table to another breaks the script

I am running multiple data analysis scripts with are often oneway analyses or t-tests. I have written or generated many of these myself but I have run into a recurring problem. I will often generate the code while on one data table and then when I…
0
votes
1 answer

SAS JMP to R integration: get R ggplot output into JMP with R Submit File

I find that if I want to import ggplot output from R into JMP using JSL scripting that I run into a problem. In JSL, I used the R Submit File call to directly call an existing R file, rather than repeating the R script in the JSL script (this can be…
Paul van Oppen
  • 1,443
  • 1
  • 9
  • 18
0
votes
0 answers

Plotting multiple classifier ROC curvers in one plot in JMP Pro

I have 4 sets of numeric continuous data that I used for regression analysis. Now, I performed ROC analysis using "Fit Y by X" option of "JMP Pro" for each set of data which generated me 4 seperate AUC curves and graphs of ROC in the "JMP Pro"…
Kadaj13
  • 1,423
  • 3
  • 17
  • 41
0
votes
1 answer

Opening JMP file without JMP

My JMP license has run out and unfortunately I can no longer use JMP (not even the free version). I have JMP files that I want to open. How can this be done without JMP? Is there a way to do this using Excel? Python? R? Any software?
pnina
  • 149
  • 6
0
votes
0 answers

JMP help Validation Column causing JMP to stop responding

JMP is timing out and not responding when I am tryng to create a validation column. The data set is large 560,000 rows but for whatever reason it causes JMP to freeze when I create this. If it does manage to generate a validation column every row…
cmoney
  • 1
0
votes
0 answers

How to read gz file from URL in JMP

How to read gz file format in JMP? suppose we have file at http://<>/testCSV.txt.gz how to read in JMP without downloading it into local machine
0
votes
2 answers

jmp script logic works as jsl but not as add-in

I run JMP 15.2.0 and my jsl script includes this section of code, which has a minor bug: for each row( if (:ColumnA == 99, ColumnA = .) ); The 2nd ColumnA should have a leading : in order to replace 99's with null. But for some reason this…
Woodchuck
  • 3,869
  • 2
  • 39
  • 70
0
votes
1 answer

Python scipy curve_fit Exponential equation not fitting as expected

I have data I am trying to fit a exponential to, this data is not ideal however when use JMP's in-build curve fit function it works as expected and a I get a good approximation of my data (please see bellow figure, JMP Fit Curve Exponential 3P). …
0
votes
1 answer

How to read JMP files using python

I am trying to run the below code (currently have JMP12, Python3). But this is giving an error saying doc variable is none type. If this method doesnt work, please suggest if there is any other method to use to convert JMP file into a CSV file for…
Shaan K
  • 1
  • 2
0
votes
0 answers

convert Timestamp to Date in JSL Scripting

I am trying to run a SQL Statement in JSL, but the statement includes a column with datetime, i do not need datetime but simply date. JSL does not like "cast for some reason" can someone please assist Open Database( "DSN=EDWPROD; UID=" || ID…
0
votes
2 answers

JSL select Query with keyword and parantheses

I am trying to select specific values from a column in JSL, but there is an issue. The column name is: Sum(ow_blah) And I would like to: select where(Sum(ow_blah) == 0) Unfortunately, the combination of the keyword Sum and parentheses have led to…
0
votes
1 answer

Studentized residuals in JSL

How can I add studentized residuals to an already fitted model I have in the JMP table? I have several tables for which I manually open the particular script and do Save Columns--> Studentized Residuals. Any help will be appreciated. Thank you
PowerToYou
  • 23
  • 9
0
votes
0 answers

VBscript Open Application and Save As different file type

I am in receipt of a number of JMP data table files (SAS related). I need to loop through a folder containing these files, open the file (via the file's native JMP application), and SAVE the file AS a SAS data set datatype. These JMP files can NOT…
Craig
  • 145
  • 1
  • 12
0
votes
1 answer

How to make the subset data table with different names

I can generate all subset data tables from my big dataset. But I face one problem in JMP — it can't have two data tables with same name. The name can be changed for second, third, and etc. Does anyone know how to make different data tables have…
blue
  • 1
  • 4
0
votes
1 answer

How to store a list or a number into empty array in jsl?

I face a problem on how to store a list or a number into an empty array, below is my code : For( i = 1, i <= N Items( S ), i++, dt:Family Device << set name( "family device" ); dt << Select Where(Starts With( dt:family device, S[i] ) )…
Shi Jie Tio
  • 2,479
  • 5
  • 24
  • 41