knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

scidesignR

The goal of scidesignR is to be able to reproduce the analyses and answer questions in Taback (2022). Design and Analysis of Experiments and Observational Studies using R.

Installation

You can install the development version of scidesignR from GitHub with:

# install.packages("devtools")
devtools::install_github("scidesign/scidesignR")

Example

Compute the row and column means from Bliss and Rose data in section 5.11.1

library(scidesignR)
library(tidyverse)
BR_LatSq %>%
  group_by(Weeks) %>%
  summarise(Weeks_Ave = mean(value))


scidesign/scidesignR documentation built on Nov. 9, 2022, 8:21 a.m.