Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created March 19, 2020 14:24
Show Gist options
  • Save NyaGarcia/445bf40f5474f833174f324301c7b7b4 to your computer and use it in GitHub Desktop.
Save NyaGarcia/445bf40f5474f833174f324301c7b7b4 to your computer and use it in GitHub Desktop.
Three-way contingency table
> table(mtcars$cyl, mtcars$carb, mtcars$gear)
, , = 3
1 2 3 4 6 8
4 1 0 0 0 0 0
6 2 0 0 0 0 0
8 0 4 3 5 0 0
, , = 4
1 2 3 4 6 8
4 4 4 0 0 0 0
6 0 0 0 4 0 0
8 0 0 0 0 0 0
, , = 5
1 2 3 4 6 8
4 0 2 0 0 0 0
6 0 0 0 0 1 0
8 0 0 0 1 0 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment