PROC IMPORT DATAFILE= '/home/u44418748/MSc Biostatistics with SAS/Datasets/school.txt'
OUT= outdata
DBMS=dlm
REPLACE;
delimiter='09'x;
GETNAMES=YES;
RUN;
I used the above code to import txt file in sas
But i got SAS log as
NOTE: Invalid data for class_size in line 454 17-18.
454 CHAR 453.34.11.31.15.NA.23.125.12.188 32
ZONE 33303303303303304403323330332333
NUMR 4539349119319159E1923E125912E188
sl_no=453 school=34 iq=11 test=31 ses=15 class_size=. meanses=23.125 meaniq=12.188 _ERROR_=1 _N_=453
because class size is . this is just one part of log
i have many missing value as .
how can i import data sucessfully