Displaying 1 result from an estimated 1 matches for "theme_bwdn".
Did you mean:
theme_bw
2009 Jan 24
2
ggplot2 - how to change location / position of wind rose axis labels?
...2)
movies$rrating <- factor(round_any(movies$rating, 1))
movies$budgetq <- factor(chop(movies$budget, 4), labels = 1:4)
doh <- ggplot(movies, aes(x = rrating, fill = budgetq))
doh + geom_bar(width = 1) + coord_polar()
#Now with my theme (hacked from theme_bw) getting close to what I need
theme_bwdn<-function (base_size = 12)
{
structure(list(axis.line = theme_blank(), axis.text.x = theme_text(size
= base_size *
1, lineheight = 0.9, vjust = 1), axis.text.y = theme_blank(),
axis.ticks = theme_segment(colour = "black",
size = 0.2), axis.title.x = theme_blank(),...