print.TABELLE
print.TABELLE.Rd
print.TABELLE
Usage
# S3 method for class 'TABELLE'
print(x, digits = 2, n = 3, ...)
Examples
data("iris")
tbl <- tabelle(data = iris[iris$Species == "setosa", ],
formula = Species ~ (Sepal = Sepal.Length + Sepal.Width) +
(Petal = Petal.Length + Petal.Width))
print(tbl)
#>
#> | | Sepal Petal |
#> | Species | Sepal.Length Sepal.Width Petal.Length Petal.Width |
#> | ------- - ------------ ----------- ------------ ----------- |
#> | setosa | 5.1 3.5 1.4 0.2 |
#> | setosa | 4.9 3 1.4 0.2 |
#> | setosa | 4.7 3.2 1.3 0.2 |
#> | ... | ... ... ... ... |