cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
lala
Level VII

How to open a SAS file in sas7bdat format using JSL?

Thanks!

  • Opening the file directly with JMP shows different results

2023-10-19_8-15-56.png

1 ACCEPTED SOLUTION

Accepted Solutions
David_Burnham
Super User (Alumni)

回复: How to open a SAS file in sas7bdat format using JSL?

Perhaps you need the option to use labels for the names?

 

dt1 = Open(
	"$SAMPLE_IMPORT_DATA/Bigclass.sas7bdat",
	Use Labels for Var Names( 1 )
);
-Dave

View solution in original post

2 REPLIES 2
lala
Level VII

回复: How to open a SAS file in sas7bdat format using JSL?

mesae1commercialdrep20220813.sas7bdat
David_Burnham
Super User (Alumni)

回复: How to open a SAS file in sas7bdat format using JSL?

Perhaps you need the option to use labels for the names?

 

dt1 = Open(
	"$SAMPLE_IMPORT_DATA/Bigclass.sas7bdat",
	Use Labels for Var Names( 1 )
);
-Dave