tesselle / tabula

:bar_chart: Analysis and Visualization of Archaeological Count Data
https://packages.tesselle.org/tabula/
GNU General Public License v3.0
35 stars 5 forks source link

FrequencyMatrix #13

Closed soodoku closed 4 years ago

soodoku commented 4 years ago
## 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?