ggplotを使用して軸方向を反転させる方法
方法1: scale_y_reverse()を使用する方法library(ggplot2) # データの作成 data <- data.frame(x = 1:10, y = 1:10) # ggplot2を使用してプロット ggplot(data, aes(x = x, y = y)) + geom_point() + scale_y_reverse()>>More
方法1: scale_y_reverse()を使用する方法library(ggplot2) # データの作成 data <- data.frame(x = 1:10, y = 1:10) # ggplot2を使用してプロット ggplot(data, aes(x = x, y = y)) + geom_point() + scale_y_reverse()>>More