knitr::opts_chunk$set(echo = TRUE)

First call library to load the flowerize package and the tidyverse package on which it depends. Next, read in the example data set provided with the package.

library(tidyverse)
library(flowerize)

flowers <- read.csv("flowers.csv")

Use this function to genterate summary statsitics for each treatment group of the flower data. See example below:

flower_describe(flowers, flowers$nitrogen, flowers$inflorescence)

USe this function to perform a and generate the results of an ANOVA. See example below:

flower_analyze(flowers$inflorescence, flowers$nitrogen, flowers)

Use this function to generate a pretty pink boxplot to visualize your data. See example below:

flower_visualize(flowers$inflorescence, flowers$nitrogen, flowers)


bjm263/final_project documentation built on Dec. 31, 2020, 8:55 p.m.