Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. plt <- ggplot(expected_line_long, aes(x=time_left, y=adjustment_value,
  2. group=adjustment_method, colour=adjustment_method,
  3. fill=adjustment_method)) +
  4. geom_line() +
  5. geom_ribbon(data=expected_line_long, aes(ymin=conf_low_naive, ymax=conf_up_naive), alpha=0.2) +
  6. geom_ribbon(data=expected_line_long, aes(ymin=conf_low_tweedie, ymax=conf_up_tweedie),alpha=0.2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement