분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
dots <- function(x, title, color, names){
theta <- seq(0, 2*pi, length=360)
circle <- cbind(cos(theta), sin(theta))
plot(circle, xlab="", ylab="", axes=F, type="n", asp=1)
k <- length(x)
cum.x <- cumsum(x); cum.x.1 <- c(0,cum.x[1:(k-1)])
for (j in 1:5){
points(cos(0.5*pi+((cum.x[j]-1):cum.x.1[j])/100*2*pi),sin(0.5*pi+((cum.x[j]-1):cum.x.1[j])/100*2*pi),col=color[j],pch=20)
center <- round((cum.x[j]+cum.x.1[j])/2)
text(0.8*cos(0.5*pi+center/100*2*pi), 0.8*sin(0.5*pi+center/100*2*pi),
names[j], col=color[j])
}
title(title, line=1)
}
출처 | 제 컴퓨터 |
죄송합니다. 댓글 작성은 회원만 가능합니다.