我正在将一个 csv 文件导入 SAS,其中包含一个使用类似于 worddatxw 的单词日期格式的字段。但在日期之后有字母(例如 1 号而不是 1 号):
Week_of_the_promotion
1st April 2013
1st April 2013
3rd April 2013
3rd April 2013
5th April 2013
我已经做到了这一点:
data work.leafletdata;
infile "C:\rawdata.csv"
delimiter = ',' MISSOVER DSD lrecl=32767 firstobs=2;
informat
Week_of_the_promotion *weird informat?* Barcode $20.
StartDate mmddyy10. EndDate mmddyy10. ;
format
Week_of_the_promotion *preferably date9.* Barcode $20.
StartDate date9. EndDate date9. ;
input
Week_of_the_promotion $ Barcode $
StartDate $ EndDate $ ;
run;
我无法弄清楚如何使用 proc import 将其导入 SAS 并在 SAS 中将其转换为可用日期。
我是 SAS 初学者,所以请使用外行的术语。谢谢!:)