나는 당신에게 데이터에 대한 아이디어를 줄 것이고 내가 달성하려는 것을 이해하는 것이 더 쉬울 것이라고 생각합니다.
Repex :
ID <- c(1, 1, 2, 3, 3, 3)
cat <- c("Others", "Others", "Population", "Percentage", "Percentage", "Percentage")
logT <- c(2.7, 2.9, 1.5, 4.3, 3.7, 3.3)
m <- c(1.7, 1.9, 1.1, 4.8, 3.2, 3.5)
aggr <- c("median", "median", "geometric mean", "mean", "mean", "mean")
over.under <- c("overestimation", "overestimation", "underestimation", "underestimation", "underestimation", "underestimation")
data <- cbind(ID, cat, logT, m, aggr, over.under)
data <- data.frame(data)
data$ID <- as.numeric(data$ID)
data$logT<- as.numeric(data$logT)
data$m<- as.numeric(data$m)
암호:
Fig <- data %>% ggplot(aes(x = logT, y = m, color = over.under)) +
facet_wrap(~ ID) +
geom_point() +
scale_x_continuous(name = "log (True value)", limits=c(1, 7)) +
scale_y_continuous(name = NULL, limits=c(1, 7)) +
geom_abline(intercept = 0, slope = 1, linetype = "dashed") +
theme_bw() +
theme(legend.position='none')
Fig
각 그래프의 y 축에 값을 레이블로 지정하고 싶습니다 aggr
. 따라서 ID 1의 경우 중앙값, ID 2의 기하학적 평균 및 ID 3의 평균을 말해야합니다.
나는 여러 가지를 시도했다.
mtext(data1$aggr, side = 2, cex=1) #or
ylab(data1$aggr) #or
strip.position = "left"
그러나 작동하지 않습니다.
또한 cat
그래프의 왼쪽 상단에 를 추가하려고합니다 . 따라서 ID 1 "기타", ID 2 "인구"및 ID 3 "백분율"입니다. 나는 협력하려고했지만 legend()
문제를 아직 해결할 수 없었습니다.