hi i am trying to create a year-month (e.g 2006-01) variable from my daily date variable using the command MONTH=put(date,yymmd8.),
however it is giving me the error
877:9
NOTE: Invalid numeric data, ' 2006-01' , at line 877 column 9.
DATE=16803 alhspr=. spread=. year=2006 month=. _ERROR_=1 _N_=2
NOTE: Invalid numeric data, ' 2006-01' , at line 877 column 9
I have used this method earlier but i dont know y sas is constantly giving me this error now.
Any help would be highly appreciated
Thanks
You have previously defined MONTH as a numeric variable. So SAS cannot figure out how to convert '2006-01' into a number to stick into your numeric variable. The code below illustrates the problem.
data _null_;
length num 8 char $7 ;
char = put('01JAN2006'd,yymmd7.);
num = put('01JAN2006'd,yymmd7.);
run;
You have previously defined MONTH as a numeric variable. So SAS cannot figure out how to convert '2006-01' into a number to stick into your numeric variable. The code below illustrates the problem.
data _null_;
length num 8 char $7 ;
char = put('01JAN2006'd,yymmd7.);
num = put('01JAN2006'd,yymmd7.);
run;
thanks tom it was silly of me
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 save with the early bird rate—just $795!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.