I have contingency tables of varying sizes. I'd like to index them using a set of values from a dataset. However,
myTable[c(5,5,5,5)] clearly does not do what I want. How do I get c(5,5,5,5) to read as myTable[5,5,5,5]?
I have contingency tables of varying sizes. I'd like to index them using a set of values from a dataset. However,
myTable[c(5,5,5,5)] clearly does not do what I want. How do I get c(5,5,5,5) to read as myTable[5,5,5,5]?