I am in need of a SAS/MACRO that freqs every column within a sas dataset.
I don't think macros have anything to do with it. You can simply use:
proc freq data=have;
tables _all_;
run;
@Astounding wrote:
I don't think macros have anything to do with it. You can simply use:
proc freq data=have;
tables _all_;
run;
And actually the tables statement is optional in this case.
Some other options that may be helpful:
In SAS EG try the Tasks>Describe>Characterize Data
In SAS Studio try Tasks>Data>Data Exploration> select your categorical/continuous variables.
Both will also have the code in the log that you can explore if desired.
@mesfandiari wrote:
I am in need of a SAS/MACRO that freqs every column within a sas dataset.
Dive into keynotes, announcements and breakthroughs on demand.
Explore Now →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.