我在R中的 investr 包中使用 plotFit 功能来显示我的数据,如下所示:
我用来生成它的代码很简单:
$file = fopen(__DIR__.'/test.txt','r');
while (!feof($file)){
$line = fgets($file);
$obj = json_decode($line);
echo $obj->sid;
echo "<hr>";
}
是否有一种简单的方法可以调整代码以将数据绘制为条形而不是点?
答案 0 :(得分:0)
是的,请使用type = "h"
。例如,
fit <- lm(dist ~ speed, data = cars)
library(investr)
plotFit(fit)
plotFit(fit, type = "h", lwd = 3)