Hello everybody,
I have a panel data with this structure:
(using dataex)
input int Year str3 Country double(pop rgdpmad rgdppc rconpc gdp iy) float(tas pr tas_sd pr_sd Country_id d_gdp d_rgdppc d_rconpc l_d_gdp l_d_rgdppc l_d_rconpc)
I set
and I am trying to run a quantile regression on a given country in a given subsample
Unfortunately, I get this error:
Could you explain please where I am wrong?
Thank you for your support.
Mike
I have a panel data with this structure:
(using dataex)
input int Year str3 Country double(pop rgdpmad rgdppc rconpc gdp iy) float(tas pr tas_sd pr_sd Country_id d_gdp d_rgdppc d_rconpc l_d_gdp l_d_rgdppc l_d_rconpc)
I set
Code:
tsset Country_id Year
Code:
qreg d_rgdppc l_d_rgdppc pr pr_sd tas tas_sd d.pr d.pr_sd d.tas d.tas_sd if Country_id == 24 & (Year >= 1954 & Year <= 2013), quantile(0.10)
Code:
time-series operators not allowed r(101); end of do-file
Thank you for your support.
Mike

Comment