Displaying 1 result from an estimated 1 matches for "budgetq".
Did you mean:
budget
2009 Jan 24
2
ggplot2 - how to change location / position of wind rose axis labels?
...es:
[1] grid stats graphics grDevices utils datasets methods
base
other attached packages:
[1] ggplot2_0.8.1 reshape_0.8.2 plyr_0.1.4 proto_0.3-8
#Using an example form the coord_polar help
library(ggplot2)
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 =...