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.
有绘图identify功能吗? 即,从点击进入绘图的函数返回数据矩阵(data.frame)中与该点对应的点的行索引。pairspairs
identify
pairs
我知道我可以切换到格子:
splom (matrix (rnorm (30), 10)) trellis.focus () panel.link.splom () ## [1] 7
但是,如果存在基本图形版本,我想知道它。
我认为在基本图形版本中没有等价物pairs,但是,pairsD3 R 包提供了一个交互式对图,当鼠标悬停在工具提示上时,它会在工具提示中显示观察的行索引。
鸢尾花数据集的示例:
install.packages("pairsD3") require("pairsD3") pairsD3(iris)
更多参考这里