tesselle/tabula

FrequencyMatrix

soodoku opened this issue · 0 comments

## Create a count matrix
A1 <- CountMatrix(data = sample(0:10, 100, TRUE),
                  nrow = 10, ncol = 10)

## Coerce counts to frequencies
B <- as_frequency(A1)
```
So far so good.

```
B[1] <- 2
```
and that goes through w/o error or warning. plausibly useful?