what is sas database server? : Sas-di
No Answer is Posted For this Question
Be the First to Post Answer
what is hash files in sas and why we are using this one in sas?
Why double trailing @@ is used in input statement?
What are the data types that sas contain?
What is the length assigned to the target variable by the scan function?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What are the default statistics for means procedure?
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT
Hi All.I am looking for Good Institute who could Provide the online SAS BI+DI Training along with software.Primarily in Delhi/NCR or in Hyderabad Please help with name and contact number of concerned person!! Thanks in Advance! :)
How would you create multiple observations from a single observation?
i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance
How can you create a macro variable with in data step? : sas-macro
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;