Hallo kind people. that's my first post on this forum and let it would kind.
by the way, Stata is really new staff for me and programming also, i am studying it in university on master and any way after law it's little bit big trampling.
So i am writing the assignment about abortion and religion anyway how religion influences abortion percentage to be clearer i am comparing religion importance percentage to abortion percentage in states. I am using world value survey.
i have little problems with rename and graphs
The * Load WVS dataset, limiting the data to.
use data/wvs2000, clear
* Subsetting: only keep data in.
keep if v2 == 67 | v2 == 89 | v2 == 13 | v2 == 19
* Inspect the list of included countries.
fre v2
tab v210
tab v191
tab v9
ren v210 Abortion
ren v9 religion
ren v191 belive in god
gr dot Abortion religion v191, over(v2, sort(1)des) ///
name(abortion_and_religion, replace)
drop if v2==67
tab Abortion
tab religion
tab v191
drop if v2==89
tab Abortion
tab religion
tab v191
drop if v2==13
tab Abortion
tab religion
tab v191
drop if v2==19
tab Abortion
tab religion
tab v191

as you see i can't rename variable v191. any way i want to apologize all of you for such dilettanti problems.
and alsoo i have little problem with graph.

I don't want to be mean of religion or mean of abortion I prefer to be the justification of abortion and important of religion.
please help me if u can.
I know that it's a really boring topic for you.
thank you in advance and if u can give addition advice.
by the way, Stata is really new staff for me and programming also, i am studying it in university on master and any way after law it's little bit big trampling.
So i am writing the assignment about abortion and religion anyway how religion influences abortion percentage to be clearer i am comparing religion importance percentage to abortion percentage in states. I am using world value survey.
i have little problems with rename and graphs
The * Load WVS dataset, limiting the data to.
use data/wvs2000, clear
* Subsetting: only keep data in.
keep if v2 == 67 | v2 == 89 | v2 == 13 | v2 == 19
* Inspect the list of included countries.
fre v2
tab v210
tab v191
tab v9
ren v210 Abortion
ren v9 religion
ren v191 belive in god
gr dot Abortion religion v191, over(v2, sort(1)des) ///
name(abortion_and_religion, replace)
drop if v2==67
tab Abortion
tab religion
tab v191
drop if v2==89
tab Abortion
tab religion
tab v191
drop if v2==13
tab Abortion
tab religion
tab v191
drop if v2==19
tab Abortion
tab religion
tab v191
as you see i can't rename variable v191. any way i want to apologize all of you for such dilettanti problems.
and alsoo i have little problem with graph.
I don't want to be mean of religion or mean of abortion I prefer to be the justification of abortion and important of religion.
please help me if u can.
I know that it's a really boring topic for you.
thank you in advance and if u can give addition advice.
Comment