Skip to content

Instantly share code, notes, and snippets.

@omartinez182
Created June 19, 2020 18:05
Show Gist options
  • Save omartinez182/26c53dae95491013e366dd5ea6d8430f to your computer and use it in GitHub Desktop.
Save omartinez182/26c53dae95491013e366dd5ea6d8430f to your computer and use it in GitHub Desktop.
Understanding Time Series Analysis with R - Snippet 2
data %>%
ggplot(aes(x=t, y=sales))+
geom_line(col = 'light blue')+
geom_point()+
xlab('Time')+
ylab('Sales')+
theme_minimal()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment