Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active March 18, 2020 15:39
Show Gist options
  • Save NyaGarcia/b09a975cc15e41fc75d5b3a21c9947cd to your computer and use it in GitHub Desktop.
Save NyaGarcia/b09a975cc15e41fc75d5b3a21c9947cd to your computer and use it in GitHub Desktop.
Showing the number of cylinders for each car in the mtcars dataset
> mtcars$cyl
[1] 6 6 4 6 8 6 8 4 4 6 6 8 8 8 8 8 8 4 4 4 4 8 8 8 8 4 4 4 8 6 8 4
> table(mtcars$cyl)
4 6 8
11 7 14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment