Learn R Programming

tablesgg (version 0.9-1)

iris2_tab: Table of Summary Statistics for Anderson's Iris Data

Description

A table of means and standard deviations of the four measurements per iris plant, by species.

Usage

iris2_tab

Arguments

Format

A tabular object as produced by version 0.9.6 of the tables package by Duncan Murdoch (https://CRAN.R-project.org/package=tables). The table was produced with the following code, starting from the iris2 data frame:

iris2_tab <- tables::tabular(
                     Species*Heading()*value*Format(digits=2)*(mean + sd) ~ 
                     Heading("Flower part")*flower_part*Heading()*direction, 
                     data=iris2)
  

See Also

iris2

Examples

Run this code
if (requireNamespace("tables", quietly=TRUE)) {
  print(iris2_tab)  # uses print method for 'tabular' objects
}
plot(iris2_tab)

Run the code above in your browser using DataLab