Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做这样的事情: 示例
使用 r 和 ggplot2。我的数据集看起来像这样: dataset_image
我怎样才能为我的数据集中的任何两个变量做到这一点?
一个非常基本的ggplot2例子:
ggplot2
a = runif(100) b = runif(100) df = data.frame(a, b) ggplot(df, aes(x = a, y = b)) + geom_point()
对于散点图矩阵,我会看看plotmatrix.
plotmatrix