Hi Community,
"Bank number","Start date","Branch number","Person name", “Balance", and so on…….
(note that names of some variables are having spaces)
77,22/2/2011 0:00:00,6,"JOHN JOSEPH", and so on……
First of all, I need to run some descriptive statistics in SAS and get some feel about the data set.
I have given the following command to read the data set in SAS.
data test;
infile 'H:\Model_Building\data.txt' firstobs=2 dlm='09'x dsd;
input
Bank number Current date Branch number Short name Balance ........
;
Run;
My question
Help is highly appreciated.
Thank you
Mirisage
It might be helpful to you
Would you try like this
proc import datafile='H:\Model_Building\data.txt' dbms=dlm out=work.test replace;
delimiter=",";
getnames=yes;
guessingrows=500;
run;
Hi SASSHARP,
Thank you very much.
Mirisage
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 lock in 2025 pricing—just $495!
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.