Dear all,
I am new to deflation of variables on Stata.
Could you please help me clarify these two issues?
My country is China, it's a yearly GDP variable that I want to deflate, my base year = 1978
I found that I should be doing this:
Is my code right?
I wanted to know whether the base year should be a year that is included in my data time interval or not necessarily?
For example, I have data for 1980 untill 2000, is it ok to have the base year= 1978?
Also I wanted to know if it is possible to use a CPI data defined as last year= 100, i.e. for each year, the base year is the last year.
Finally, is it ok to deflate GDP per capita instead of GDP ?
Any remark is very appreciated,
Thank you.
I am new to deflation of variables on Stata.
Could you please help me clarify these two issues?
My country is China, it's a yearly GDP variable that I want to deflate, my base year = 1978
I found that I should be doing this:
Code:
gen real_GDP = GDP/(CPI/100)
I wanted to know whether the base year should be a year that is included in my data time interval or not necessarily?
For example, I have data for 1980 untill 2000, is it ok to have the base year= 1978?
Also I wanted to know if it is possible to use a CPI data defined as last year= 100, i.e. for each year, the base year is the last year.
Finally, is it ok to deflate GDP per capita instead of GDP ?
Any remark is very appreciated,
Thank you.
Comment