gpt4 book ai didi

r - 如何在 r 中获取 coplot 的图例?

转载 作者:行者123 更新时间:2023-12-02 01:17:55 30 4
gpt4 key购买 nike

使用 iris 数据集,当我将点的颜色定义为 variable 时,我将找到一种在 coplot 中获取图例的方法> 变量,在本例中为 (Species)。换句话说,我想看到一个图例告诉我哪个形状和颜色代表哪个物种

脚本如下

coplot(Sepal.Width~Sepal.Length|Petal.Width*Petal.Length, data = iris,
number=c(3,3),overlap=.5,col=as.numeric(iris$Species),
pch=as.numeric(iris$Species)+1)

这是生成的图表: enter image description here

最佳答案

coplot(Sepal.Width~Sepal.Length|Petal.Width*Petal.Length, data = iris,
number=c(3,3),overlap=.5,col=as.numeric(iris$Species),
pch=as.numeric(iris$Species)+1)

legend("topright", pch = unique(as.numeric(iris$Species)+1),
col = unique(as.numeric(iris$Species)),
legend = unique(iris$Species))

您只需将图例位置调整为更适合您的图形大小即可。

关于r - 如何在 r 中获取 coplot 的图例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41726480/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com