gpt4 book ai didi

r - 在 R 图上用鼠标写?

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

我使用 plot() 创建了散点图R 中的函数。

有没有可能在这张图上画画?

我想添加一条直线并获取它的参数,但在我看来 abline()可能不方便(我想画很多条线,然后选择最合适的一条线)。

我怎样才能完成这个任务?

最佳答案

看看 RStudio 和这个例子:

library(manipulate)
data = matrix(rnorm(20), ncol = 2)

example <- function(data, a, b){
plot(data[,1],data[,2])
abline(a = a, b = b)
}

manipulate(
example(data, a, b),
a = slider(-5,5),
b = slider(-5,5)
)

这将在绘图上放置一条新线,并允许您调整其斜率和截距。

这是受到本页示例的启发: http://support.rstudio.org/help/discussions/questions/106-rstudio-manipulate-command

请注意,这需要安装 RStudio(我相信它与 manipulate 包一起提供)。更多信息, see the site .

其他人的解决方案与 locator可以在基础 R 中完成。

关于r - 在 R 图上用鼠标写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7284041/

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