| print.wtna_mixed | R Documentation |
Print Method for wtna_mixed
## S3 method for class 'wtna_mixed'
print(x, ...)
x |
A |
... |
Additional arguments (ignored). |
The input object, invisibly.
oh <- matrix(c(1,0,0, 0,1,0, 0,0,1, 1,0,0), nrow = 4, byrow = TRUE,
dimnames = list(NULL, c("A","B","C")))
mixed <- wtna(oh, method = "both")
print(mixed)
oh <- data.frame(
A = c(1,0,1,0,1,0,1,0),
B = c(0,1,0,1,0,1,0,1),
C = c(1,1,0,0,1,1,0,0)
)
mixed <- wtna(oh, method = "both")
print(mixed)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.