gpt4 book ai didi

r - 是否可以使用两个以上的字符作为情节中的点

转载 作者:行者123 更新时间:2023-12-02 07:04:20 25 4
gpt4 key购买 nike

我正在尝试在图中绘制点,其中每个点都由一个数字表示。然而,这些点似乎只能是一个字符长,正如您在下面代码生成的图中所见:

set.seed(1); plot(rnorm(15), pch=paste(1:15))

enter image description here

我想知道是否有任何解决方法。谢谢。

最佳答案

set.seed(1); plot(rnorm(15), pch=paste(1:15),type='n')
text(x=1:15,y=rnorm(15),label=round(rnorm(15),2))

enter image description here

另一个使用 lattice 的网格选项,例如:

dat <- data.frame(x=1:15,y=rnorm(15))
xyplot(y~x,data=dat,
panel=function(x,y,...){
panel.xyplot(x,y,...)
panel.text(x,y,label=round(rnorm(15),2),adj=2,col='red')})

enter image description here

关于r - 是否可以使用两个以上的字符作为情节中的点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14928015/

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