data FoodQualityData;
infile "path/filename.csv" firstobs = 6 dsd;
input Plot Cultigen number Rep Loc $ Std _1;
run;
open your file and check from which line the data starts and mention it in firstobs option. I found only 7 variables in the files. So, I mentioned only 7 variables in the input statement.
Ex : if the data starts from 6th line mention firstobs = 6
if it starts from 10th line then firstobs = 10
... View more