Hello!
to make clear what my problem is I use the data "sysuse auto".
To show you my problem I use two categorial variables, so I had to create one with the variable "price"
I want to create a grouped bar chart with the command "Catplot", that works great too.
But the labeling bothers me.
I would like to remove the font "Car Type".
How can I solve the problem?
Syntax:
generate price_exp= 0
replace price_exp = 1 if price>5000
generate price_low = 0
replace price_low = 1 if price<4999
generate price_kat =1 if price_exp==1
replace price_kat =2 if price_low==1
label variable price_kat "Price kategorial"
label define price_label 1 "Teuer" 2 "Billig"
label value price_kat price_label
tab price_kat
tab foreign price_kat, column
catplot foreign, over(price_kat) percent(price_kat) asyvar recast(bar)
Related Posts with Changing the graph label while using the "catplot" command
convert string to date: some observations are missing valuesDear Stata Users I am converting string to date variable running the following code: Code: gen da…
Homogeneity and symmetry condition in LA-AIDS in stata command suregDear community, I want to estimate LA-AIDS with homogeneity and symmetry conditions imposed. I have …
Problem with Stata's parsing of command options in graphical commandsDear All, I suspect a bug in Stata's parsing of command options in graphical commands. Can someone c…
cascading flag variablesHi there Any advice on an easy way to code the following would be greatly appreciated. Code: clea…
Reverse geocoding with geoinpoly gives inaccurate results helpHello, I am trying to use geoinpoly to extract countries from coordinates. I am using the 'PDSI - M…
Subscribe to:
Post Comments (Atom)
0 Response to Changing the graph label while using the "catplot" command
Post a Comment