I would like to create a list column of matrices, where the entries of each matrix are elements from variables already present in the original dataset. My goal is to create 2 time 2 contingency tables for each row of the data set, and subsequently pass each matrix as an argument to fisher.test
.
I have tried adding the new column using a combination of mutate
and matrix
, but this returns an error. I've also tried using do
instead of mutate
and this seems like a step in the right direction, but I know this is also incorrect, because the dimensions of the elements are off, and there is only one row in the output.
library(tidyverse)
mtcars %>%
mutate(mat = matrix(c(.$disp, .$hp, .$gear, .$carb)))
#> Error: Column `mat` must be length 32 (the number of rows) or one, not 128
mtcars %>%
do(mat = matrix(c(.$disp, .$hp, .$gear, .$carb)))
#> # A tibble: 1 x 1
#> mat
#> <list>
#> 1 <dbl [128 x 1]>
Created on 2019-06-05 by the reprex package (v0.2.1)
I am expecting 32 rows in my output, and the mat
column to contain 32 2x2 matrices composed of entries from mtcars$disp
, mtcars$hp
, mtcars$gear
, and mtcars$carb
.
My intent is to use map
to pass each entry in the mat
column as an argument to fisher.test
, then extract the odds ratio estimate, and the p-value. But the main focus, of course, is creation of the list of matrices.