Hi, I started working with SAS University edition in my graduate class. I had a problem. When I create the library and save a SAS system file, the CVS dataset shows incomplete rows. In the original CVS dataset, I have 100 observation, when it's opened in SAS, only shows 50 observation. All the variables are included in the SAS dataset. This is the code that I am using. libname lib2021 '/folders/myfolders'; data lib2021.ambEEG1; infile '/folders/myfolders/Ambulatory/AmbulatorySASquestion.csv' dsd dlm=',' firstobs=2; input FRST$ SECMD$ FUweeksnew CENSORED OUTCOME2 SEX AgeSUS AgeSUS Agegroups2$ FAMHISEPI$ FEBRSZ$ STROKE$ HTN$ BRAINTMR$ HEADTRM$ Devlpmtldisab$ PSYCH$ CONFUS$ INCONTNCE$ NOCTURSZ$ TNGBITT$ AUTOMATS$ IMAGINE$ AMB$; run; Please find the CVS dataset. and a picture of the SAS table properties after
... View more