我有一個數據集,其中全是字符格式的數據。從另一個數據集創建數據集時使用信息
現在我想從這一個創建另一個數據集,把它放在一切正確的十進制或日期或字符格式。
這是我正在嘗試。
data work.testout; attrib account_open_date informat = mmddyy10.; do i = 1 to nobs; set braw.accounts point = i nobs = nobs; output; end; stop; run;
這給了我: Variable 'account_open_date' from data set braw.accounts (at line 7 column 21) has a different type (character) to the variable type on the data vector (numeric)
什麼是這樣做的最佳方式?
你爲什麼要編寫自己的datastep循環? DATASERVER是否沒有正常的SAS自動datastep循環? – Joe