为GLM allEffects图添加置信区间

时间:2015-12-26 14:23:53

标签: glm confidence-interval

我需要在我的glm情节中添加95%的置信区间。

当我做multiline=T时(因为我需要在同一个情节中进行2次治疗,所以我这样做了),间隔消失了。我怎样才能让他们回来?

这就是我现在所拥有的:

plot(allEffects(fit1), ylab= "Age of onset of foraging", main="",
     type="rescale", multiline=T, rescale.axis=F)

作为数据我有-RFID是识别蜜蜂并跟随它们的动作的技术; 2种治疗方法:控制和病原体治疗; " first.trip" - 第一次觅食之旅的日子。这个(第一次/旅行)是有趣的,我需要在我的allEffectsplot上有95%的置信区间。

RFID = 01 0c 1d 1e 1f
colony = A  A  A  B  B
treatment = control DWV control control DWV  
first.trip = 19 NA NA 17 17 17
last.trip = 22  NA NA 17 31 30

1 个答案:

答案 0 :(得分:2)

来自class exampleClass { private $api_json = NULL; private function call_api() { if(is_null($this->api_json)) { $json = // result of api call; $this->api_json = $json; } return $this->api_json; } public function printStuffOut() { $jsonStuff = $this->call_api(); $jsonStuff->{'result'}[0]->{'fieldName'}; } public function printStuffOut2() { $jsonStuff = $this->call_api(); $jsonStuff->{'result'}[0]->{'fieldName'}; } }

  

ci.style:可以使用误差条指示置信区间             线条或置信带,取决于绘图类型。 ...对于多线图,默认为             '"无"'对于没有信心的限制,但风格'"酒吧"'或             '" band"'也可以使用。

使用?plot.eff中的示例:

?plot.eff

enter image description here