Hi guys,
I have data that looks like this:
| ymd | year | month | day | time | output |
| 200011 | 2000 | 1 | 1 | 12:00 | 0.123456 |
| 200011 | 2000 | 1 | 1 | 13:00 | 0.987654 |
| 200011 | 2000 | 1 | 1 | 14:00 | 0.456123 |
| 200012 | 2000 | 1 | 2 | 12:00 | 0.789123 |
| 200112 | 2001 | 1 | 2 | 13:00 | 0.963852 |
| 200112 | 2001 | 1 | 2 | 14:00 | 0.852852 |
| ymd | year | month | day | 12:00 | 13:00 | 14:00 |
| 200011 | 2000 | 1 | 1 | 0.123456 | 0.987654 | 0.456123 |
| 200012 | 2000 | 1 | 2 | 0.789123 | 0.963852 | 0.852852 |
"reshape wide output, i(ymd) j(time) string"
I get the error:
"output12:00 invalid variable name"
Is there any way I can overcome this?
Thanks,
A

Comment