Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 921 Bytes

File metadata and controls

34 lines (24 loc) · 921 Bytes

ExperimentalDesigner

CRAN status Build Status

Installation

You can install ExperimentalDesigner from github with:

# install.packages("devtools")
devtools::install_github("cedricbatailler/ExperimentalDesigner")

Example

This is a basic example which shows you how to use ExperimentalDesigner

library(ExperimentalDesigner)

Condition <-
  c("Eperimental", "Control")

InitExperimentalPlan(80) %>%
  AddFactor(Condition) %>%
  RandomizeOrder() %>%
  ReassignParticipantNumber() %>% 
  SaveExperimentalPlan("myplan.xlsx")