Hi!
When I have strings in names of my categorical variables plotnine seems to be interpreting them as markdown automatically. I would not have expected this to be the default (I don't think it is in ggplot). Is this expected behavior? How would I turn this off?
Thank you!
(
pl.DataFrame({"money_group": ["$0 - $10", "$10 + "], "count_in_group":[100,150]})
>>
ggplot(aes(x = "money_group", y = "count_in_group")) + geom_col() + theme_gray(20)
)

Hi!
When I have strings in names of my categorical variables plotnine seems to be interpreting them as markdown automatically. I would not have expected this to be the default (I don't think it is in ggplot). Is this expected behavior? How would I turn this off?
Thank you!
( pl.DataFrame({"money_group": ["$0 - $10", "$10 + "], "count_in_group":[100,150]}) >> ggplot(aes(x = "money_group", y = "count_in_group")) + geom_col() + theme_gray(20) )