SAS-数据导入问题

时间:2017-06-26 19:01:39

标签: import sas

我使用以下代码将数据从csv格式导入SAS。但是,创建的数据集中的数据位于错误的行中,如图所示。出价大小中的实际数据位于bid_price中,并且缺少bid_size中的数据。由于某种原因,我无法使用文件>导入数据或proc import。因此,有人可以帮我查看我使用的代码吗?

enter image description here

data WORK.want   ;
       %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
       infile "E:\N69853943.csv"                                                                 /*obs = 10*/
       delimiter = ',' MISSOVER DSD lrecl=32767 firstobs=2 ;
          informat _RIC $25. ;
          informat Date_L_ best32. ;
          informat Time_L_ time20.3 ;
          informat Type $13. ;
          informat Ex_Cntrb_ID $1. ;
          informat LOC $1. ;
          informat Price best32. ;
          informat Volume best32. ;
          informat Market_VWAP $1. ;
          informat Buyer_ID $3. ;
          informat Bid_Price best32. ;
          informat Bid_Size best32. ;
          informat No__Buyers $1. ;
          informat Seller_ID $3. ;
          informat Ask_Price best32. ;
          informat Ask_Size best32. ;

          format _RIC $25. ;
          format Date_L_ best32. ;
          format Time_L_ time20.3 ;
          format Type $13. ;
          format Ex_Cntrb_ID $1. ;
          format LOC $1. ;
          format Price best32. ;
          format Volume best32. ;
          format Market_VWAP $1. ;
          format Buyer_ID $3. ;
          format Bid_Price best32. ;
          format Bid_Size best32. ;
          format No__Buyers $1. ;
          format Seller_ID $3. ;
          format Ask_Price best32. ;
          format Ask_Size best32. ;

       input
                   _RIC $
                   Date_L_
                   Time_L_
                   Type $
                   Ex_Cntrb_ID $
                   LOC $
                   Price
                   Volume
                   Market_VWAP $
                   Buyer_ID $
                   Bid_Price
                   Bid_Size
                   No__Buyers $
                   Seller_ID $
                   Ask_Price
                   Ask_Size
                              ;
       if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable */

run;

1 个答案:

答案 0 :(得分:1)

您的代码与Excel文件相比,列出了一个额外的变量LOC,因此您的数据将被推送到一个字段。它在E / F栏之间。

请注意,之前的变量被截断用于演示,但它有一个/并且可能有一个逗号,导致PROC IMPORT假设您有另一个变量。删除LOC变量以正确读取文件。

您可能还想使用TRUNCOVER而不是MISSOVER。