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
Price Elasticity of Demand - referring to last weeks sales?Hello, I am trying to work out store level price elasticity of demand for a product. I will have 10…
Failing to properly reproduce Stata Blog's examples with MatplotlibHello everyone, I am trying to reproduce the code given on https://blog.stata.com/2020/09/14/st...l…
coefplot after mlogitHello, This is my first post so hopefully, I will get it right. I run mlogit and would like to use…
how can i make the bootstrapping fast?i am doing bootstrapping for SE in indirect effect, but It gets stuck at some point (don't move), ho…
Error option expression() requiredDear Stata User, To learn more about Industrial Organizations and STATA programming, I have been tr…
Subscribe to:
Post Comments (Atom)
0 Response to Changing the graph label while using the "catplot" command
Post a Comment