作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在pairs()
为此工作,并且花了很长一段时间尝试添加图例或使用幻影符号来更改标题中物种的颜色以与点...任何见解将不胜感激!这是一个问题。
# original code
pairs(iris[1:4],
main = "Width and Length (cm) of Iris's Petals and Sepals: Setosa, Veriscolor, Virginica",
pch = 24, bg = c("mediumorchid4", "mediumpurple1", "lightpink1")[unclass(iris$Species)],
upper.panel=NULL, labels=c("Sepal Length","Sepal Width","Petal Length","Petal Width"),
font.labels=1, cex.labels=2)
最佳答案
这是一个更好的选择,以防万一(不是很好)接受的答案消失:
pairs(iris[1:4],
main = "Width and Length (cm) of Iris's Petals and Sepals: Setosa, Veriscolor, Virginica",
pch = 24, bg = c("mediumorchid4", "mediumpurple1", "lightpink1")[unclass(iris$Species)],
upper.panel=NULL, labels=c("Sepal Length","Sepal Width","Petal Length","Petal Width"),
font.labels=1, cex.labels=2)
legend(x = "topright",legend = levels(iris$Species),
pch = 24,pt.bg = c("mediumorchid4", "mediumpurple1", "lightpink1"),
inset = 0.1)
我没有像乔希建议的那样使用locator
,而是只是为inset
寻找了一个合适的设置。
关于r - 如何在 R 中向图表添加自定义图例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19366467/
我是一名优秀的程序员,十分优秀!