***********************************************************; * Research Computing Services *; * Introduction to SAS *; ***********************************************************; ***********************************************************; * Input Data From a File *; * *; * Use infile BEFORE the input statement; *; * *; * Input statement contains the column names *; * For numeric columns, specify a name *; * For the columns containing character data, add $ after *; * the name of the column *; * Within the input file use spaces to separate the data *; * "missover" skips over missing data *; * For Mac, you need to checn the blackslash to slash *; * *; * After the data statement is executed, navigate to the *; * Work library in the Explorer window and check the data *; * *; ***********************************************************; data mydata; infile 'Datasets/mydata.dat' missover; input id name $;