library(ggplot2) df <- data.frame(z = 1:5) p <- ggplot(df, aes(1, 1, colour = z)) + geom_point() # Title should be centered with legend p + ...
確定! 回上一頁