I am using Stata/SE 12 with maxvars
set to 32767 and memory
set to 640 Mb. My current dataset consists of 9,000 observations (in rows) and 16,800 variables (in columns v1, v2
and up to v16800
).
I would like to convert the dataset into long format using the reshape
command using the following line of code:
reshape long v , i(simulation) j(_count)
Stata gives me error 134: _count takes too many values.
Are there any Stata limitations on number of observations? What could be the problem here?