gpt4 book ai didi

r - 如何在R中创建连接两点的线

转载 作者:行者123 更新时间:2023-12-03 19:55:13 24 4
gpt4 key购买 nike

有没有办法在 R 中创建连接两点的线?
我知道lines(),函数,但它创建线段我正在寻找的是一条无限长的线。

最佳答案

以下是 Martha 建议的示例:

set.seed(1)
x <- runif(2)
y <- runif(2)

# function
segmentInf <- function(xs, ys){
fit <- lm(ys~xs)
abline(fit)
}

plot(x,y)
segmentInf(x,y)

enter image description here

关于r - 如何在R中创建连接两点的线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34658229/

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