Data https://drive.google.com/file/d/1YuhqzBbQfdJx9MWYmc2nrlgOO-IyARoK/view?usp=sharing
How would I be able to label the outliers from my given data. I would like to know which sites were the outliers . Here are my codes so far. Thanks
# without jitter
ggplot(data=df, aes(x=variable, y=value, fill=variable)) + geom_boxplot() + theme_bw() + labs(x="Environmental Parameters", y="Standardized Range")+theme(legend.position = "none") + theme(text=element_text(family="Times New Roman", face="bold", size=12))
#with
ggplot(data=df, aes(x=variable, y=value, fill=variable)) + geom_boxplot() + theme_bw() + labs(x="Environmental Parameters", y="Standardized Range")+theme(legend.position = "none") + theme(text=element_text(family="Times New Roman", face="bold", size=12)) + geom_jitter(position=position_jitter(0.1))