嗨,我在python中使用matplotlib创建了下面的图表。 该图显示了每组的最佳拟合线。
我想在R中复制相同的过程并在每行的顶部打印最合适的线方程,请建议。
答案 0 :(得分:0)
你的问题有些模糊。
我所知道的一个内置R函数是abline()
从?abline()
帮助命令引用。
Description
This function adds one or more straight lines through the current plot. Usage
abline(a = NULL, b = NULL, h = NULL, v = NULL, reg = NULL,
coef = NULL, untf = FALSE, ...)
Arguments a, b
the intercept and slope, single values. untf
logical asking whether to untransform. See ‘Details’. h
the y-value(s) for horizontal line(s). v
the x-value(s) for vertical line(s). coef
a vector of length two giving the intercept and slope. reg
an object with a coef method. See ‘Details’. ...
graphical parameters such as col, lty and lwd (possibly as vectors: see ‘Details’) and xpd and the line characteristics lend, ljoin and lmitre.
abline
的示例图片
它并不是你所要求的,因为它会产生直线。但它已经是最合适的线。
你也可以一般地探索?lines
,看看自己最适合自己的东西。
另一个建议是简单地展示一个代码示例,这样我们就可以看到你做了什么,并提出了关于R中实现的想法。