Hi there,
I am trying to use the weekday function but I am having some error. If someone could help me out here that would be great! Thanks.
I am doing a simple:
weekday=weekday(occurred_at) but keep getting errors. Not sure why.
Below is the result from proc contents:
6 occurred_at Num 8 DATETIME. DATETIME.
According to the doc
SAS(R) 9.4 Functions and CALL Routines: Reference, Fourth Edition
the WEEKDAY function expects a date, rather than a datetime. Try this:
weekday = weekday(datepart(occurred_at));
According to the doc
SAS(R) 9.4 Functions and CALL Routines: Reference, Fourth Edition
the WEEKDAY function expects a date, rather than a datetime. Try this:
weekday = weekday(datepart(occurred_at));
Thank you, Rick!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.