I imported an Excel file into my SAS program, but now I am having problems trying to graph the data. This is the code I have so far:
/* Generated Code (IMPORT) */
/* Source File: EG01-46IQ.xls */
/* Source Path: /folders/myfolders */
/* Code generated on: 1/31/19, 9:08 PM */
%web_drop_table(WORK.IMPORT);
FILENAME REFFILE '/folders/myfolders/EG01-46IQ.xls';
PROC IMPORT DATAFILE=REFFILE
DBMS=XLS
OUT=WORK.IMPORT;
GETNAMES=YES;
RUN;
PROC CONTENTS DATA=WORK.IMPORT; RUN;
%web_open_table(WORK.IMPORT);
data WORK.INPUT;
The data is an Excel file of one column of numerical data. I do not know if I am supposed to use the datalines command or how to tell SAS what to do with the imported data. Any advice is much appreciated! 🙂