R 파이차트 pie()

(R pie()에서 넘어옴)

1 개요[ | ]

R 파이차트
R pie()
pie(rep(1, 24), col = rainbow(24), radius = 0.9)
sales <- c(0.12, 0.3, 0.26, 0.16, 0.04, 0.12)
names(sales) <- c("Blueberry", "Cherry", "Apple", "Boston Cream", "Other", "Vanilla Cream")
pie(sales)
pie(sales, density = 10, angle = 15 + 10 * 1:6)
pie(sales, clockwise = TRUE, main = "pie(*, clockwise = TRUE)")
segments(0, 0, 0, 1, col = "red", lwd = 2)
text(0, 1, "init.angle = 90", col = "red")
n <- 200
pie(rep(1, n), labels = "", col = rainbow(n), border = NA,
    main = "pie(*, labels=\"\", col=rainbow(n), border=NA,..")
pie(c(Sky = 78, "Sunny side of pyramid" = 17, "Shady side of pyramid" = 5),
    init.angle = 315, col = c("deepskyblue", "yellow", "yellow3"), border = FALSE)

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}