Size veriler hakkında bir fikir vereceğim ve bence o zaman neyi başarmaya çalıştığımı anlamak daha kolay olmalı.
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)
Kod:
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
Her grafiğin y eksenini değeriyle etiketlemek istiyorum aggr
. Yani ID 1 için medyan, ID 2 için geometrik ortalama ve ID 3 için ortalama demelidir.
Birden çok şey denedim:
mtext(data1$aggr, side = 2, cex=1) #or
ylab(data1$aggr) #or
strip.position = "left"
Ama işe yaramıyor.
Ayrıca cat
grafiğin sol üst köşesine eklemek için çalışıyorum . Dolayısıyla, Kimlik 1 "Diğerleri", Kimlik 2 "Nüfus" ve Kimlik 3 "Yüzde" için. Çalışmaya çalıştım legend()
ama sorunu da çözemedim.