I have CSV data. Can anyone help reading it in SAS without using proc import?
If you run proc import SAS will write and run the data step that you would otherwise have to write to read in the file.
Proc import saves you the time of getting the variable names from the first records, determining which variables are numbers and which are characters, and identifying each variable's length.
Art, CEO, AnalystFinder.com
please without using proc import
If you run proc import it will not only do the job, but show you the code that answers your question.
On the other hand, if you want a lesson, take a look at: https://support.sas.com/techsup/technote/ts673.pdf
Art, CEO, AnalystFinder.com
Why can't you use PROC IMPORT?
Vince DelGobbo
SAS R&D
@kekou wrote:
i have a CSV data. can anyone help reading it in SAS without using proc import?
Is this a file that should be public and available to anyone or does it contain confidential information? If this is a work file you may have violated confidentiality rules.
CSV files are easy to read. Something like your file with only three variables is easier to read WITHOUT using PROC IMPORT.
data want ;
infile 'zipcode.csv' dsd truncover firstobs=2;
input var1-var3 ;
run;
Now if you want you can use more meaningful names for your variables.
If it really was a messy file then you could try reading the fields as characters strings and adding extra code to convert the strings into the types of values you need.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.