I am trying to import data from a csv file into SAS studio. When I run the program, the notes tell me that there were zero observations and two variables. There are two variables, but there should be 39. What am I doing wrong? I have attached my code, as well as a screen shot of my csv file. Thank you for your help. data CitynameSTinSAS;
infile "/folders/myfolders/CitynameSTforSAS.csv" dlm="," firstobs=2;
input Temp Met;
run; Tim Muhich
... View more