cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Imported JMP file to SAS, ran routine, received outb.subset_processed.sas7bxat

LNitz
Level IV

SAShelp says that the  sas7bxat file is an extended characteristics file.  If so, is there supposed to be  a regular data file,  * sas7bdat  file?   If not, how do I open the sas7bxat file?

SAS Code: 

libname outb "C:\Users\lnitz\NewDownloads\Covid_Hawaii\";
proc import
out=work.subset_hawaii_covid

datafile="C:\Users\lnitz\NewDownloads\Covid_Hawaii\subset of Hawaii_Covid_w_Incidence.jmp"
dbms=jmp replace;
run;

data outb.subset_processed;
set work.subset_hawaii_covid;
by Datenumeric;
Length comb_text $6000.;
retain comb_text;
if first.Datenumeric then
comb_text= tweets.text;
else
comb_text=catx(', ', comb_text, tweets.text);
if last.Datenumeric then
output;
run;

 

The target data was  a numeric JMP date and a line of text.

0 REPLIES 0