Write a macro to import different type of files. Let’s say we have files that are tab delimited text files as well as csv files. (“Sample.csv” and “Scores.txt”)
Homework?
Have a look a proc import - not may preferred way to read text files - write one for each file type, compare the differences, create a macro with parameters.
Homework?
Have a look a proc import - not may preferred way to read text files - write one for each file type, compare the differences, create a macro with parameters.
Required help to convert the below SAS codes into macros.
a) proc gchart data=HTWT; vbar gender/sumvar=weight; Title "Average weight by Gender";
run;
b) proc plot data=HTWT; Title "Scatter plot"; plot &height*&weight;
run;
(Hint: Define two different macros.)
@pallab You should use PROC SGPLOT not GCHART or PLOT these days. The graphics quality is much better.
did u get answer.. reply me fast
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.