1
ggrepel顯示標籤我有以下代碼:如何使用上排序的x和y軸值
library(tidyverse)
all_annot_df <- as.tibble(iris) %>%
mutate(Obs = paste0("Obs_", row_number())) %>%
select(Obs, Species, Sepal.Length)
signif_thres <- 7.5
all_annot_df["Significant"] <- ifelse((all_annot_df$Sepal.Length > signif_thres),"Signif","NotSignif")
p <- all_annot_df %>%
ggplot(aes(reorder(Obs,Sepal.Length), Sepal.Length, colour=Species)) +
geom_point() +
theme_bw() +
xlab("Observation") +
theme(axis.text.x=element_blank(),
axis.ticks.x=element_blank()) +
geom_hline(aes(yintercept=signif_thres, colour='red'))
p
如上圖I」中所示d喜歡使用ggrepel顯示標籤。 我該怎麼辦?