time_course %>%
tidyplot(x = day, y = score, color = treatment) %>%
add_curve_fit()
# Changing arguments
time_course %>%
tidyplot(x = day, y = score, color = treatment) %>%
add_curve_fit(linewidth = 1)
time_course %>%
tidyplot(x = day, y = score, color = treatment) %>%
add_curve_fit(alpha = 0.8)
# Remove confidence interval
time_course %>%
tidyplot(x = day, y = score, color = treatment) %>%
add_curve_fit(se = FALSE)
Run the code above in your browser using DataLab