cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
lala
Level IX

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 IX

回复: 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

Recommended Articles