-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior
Milestone
Description
locfit shows SEs instead of CIs when used with stat_smooth.
library(locfit)
library(ggplot2)
data(ethanol)
# 99% CIs computed by locfit
fit = locfit(NOx~E, data=ethanol)
crit(fit) = crit(fit, cov=0.99)
plot(fit, band="local")
# 99% CIs displayed by ggplot
qplot(E, NOx, data=ethanol) +
stat_smooth(method="locfit", level=0.99)
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behavior