Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Participant Age Type
  2. John 5 A
  3. John 3 B
  4. John 3 B
  5. John 3 C
  6. John 4 B
  7. Amy 5 A
  8. Amy 3 A
  9. Amy 4 C
  10. Amy 4 B
  11.  
  12. ggplot(data = df1, aes(x = Type, y = Age, color = Type)) +
  13. geom_point() +
  14. geom_count() +
  15. facet_wrap(~Participant)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement