Hello!
I received this error which makes no sense to me. I am trying to run a command I used on homework to a different dataset and don't understand why it's not working. The error is r900 no room to add more variables
My command was asking for only two variables
spagplot pago_dia_dol survey in 1/10, id( id)
Essentially I want to see people's daily pay change over time-- (survey is my time variable--it represents the baseline, exit survey, 4 follow up surveys and a final survey). is the survey variable stored as the wrong type? Not sure how to remedy this.
Thanks
I received this error which makes no sense to me. I am trying to run a command I used on homework to a different dataset and don't understand why it's not working. The error is r900 no room to add more variables
My command was asking for only two variables
spagplot pago_dia_dol survey in 1/10, id( id)
Essentially I want to see people's daily pay change over time-- (survey is my time variable--it represents the baseline, exit survey, 4 follow up surveys and a final survey). is the survey variable stored as the wrong type? Not sure how to remedy this.
Thanks
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input long id float(pago_dia_dol survey) 1 . 0 1 . 1 1 . 2 2 . 0 3 . 0 4 . 1 4 . 6 4 . 0 5 . 3 5 . 6 end label values id id label def id 1 "Hhr-005e9e8-13b", modify label def id 2 "Hhr-00b69bf-667", modify label def id 3 "Hhr-00d90fa-b13", modify label def id 4 "Hhr-00d90fa-e7a", modify label def id 5 "Hhr-00da329-1ae", modify label values survey survey1 label def survey1 0 "BL", modify label def survey1 1 "exit", modify label def survey1 2 "mo6", modify label def survey1 3 "mo12", modify label def survey1 6 "final", modify
Comment