Guest User

Untitled

a guest
Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. FromUser time shares comments likes
  2. User 1 17-01-18 67 5 100
  3. User 2 16-01-18 46 13 65
  4. User 1 16-01-18 32 25 32
  5. User 1 15-01-18 45 36 45
  6. User 2 14-01-18 64 52 58
  7.  
  8. line_chart <- ggplot(dataframe, aes(x = time)) +
  9. geom_line(aes(y = shares), colour="blue") +
  10. geom_line(aes(y = comments), colour = "grey") +
  11. geom_line(aes(y = likes), colour = "grey") +
  12. ylab(label="Number of interactions") +
  13. xlab("Days")
Add Comment
Please, Sign In to add comment