gpt4 book ai didi

r - 如何在R中绘制多个中心圆

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

嘿,我想在 R 中绘制几个不同半径的圆。

我用“plotrix”和 draw.circle 做了这个:

draw.circle (0,0,1)
draw.circle (0,0,1.5)
draw.circle (0,0,2)
...

您知道更快更智能的方法吗?

最佳答案

draw.circle 似乎接受输入向量,因此使用任何方便的函数来生成输入序列并将其传递给函数。

plot(0,0,type = "n", xlim = c(-10,10), ylim = c(-10,10))
draw.circle (0,0,seq(0,4,.5))

enter image description here

关于r - 如何在R中绘制多个中心圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10165970/

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