Hallo, I have some text files and I would like to import them in sas. But I only get one column instead of different column. Can someone please help me with this? I attach the text file here. Thanks.
Assuming you only want the first portion of the file :
filename myFile "&sasforum.\datasets\F-F_Research_Data_Factors.txt";
data test;
format dt yymmn6.;
label Mkt_RF="Mkt-RF";
infile myFile missover;
input @;
if anyalpha(_infile_) = 0 and length(trimn(_infile_)) > 0 then do;
input dttxt $ Mkt_RF SMB HML RF;
if length(trim(dttxt)) = 6 then do;
dt = input(dttxt, yymmn6.);
output;
end;
end;
drop dttxt;
run;
PG
Assuming you only want the first portion of the file :
filename myFile "&sasforum.\datasets\F-F_Research_Data_Factors.txt";
data test;
format dt yymmn6.;
label Mkt_RF="Mkt-RF";
infile myFile missover;
input @;
if anyalpha(_infile_) = 0 and length(trimn(_infile_)) > 0 then do;
input dttxt $ Mkt_RF SMB HML RF;
if length(trim(dttxt)) = 6 then do;
dt = input(dttxt, yymmn6.);
output;
end;
end;
drop dttxt;
run;
PG
Thank you!!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.