CRD: Complete Random Design

Description Usage Arguments Details Value Note Author(s) Examples

Description

Due to 'Rstudio's' status as open source software, we believe it will be utilized frequently for future data analysis by users whom lack formal training or experience with 'R'. The CRD is a complete random design with a one-way analysis of variance without downloading multiple libraries or packages. Users can easily manipulate the data block, n-value, k-value, and factor to optimize analysis for any data set.

Usage

1
CRandom(r,k,f,n)

Arguments

r

The dataset or source you want to examine

k

The parameter for the model

f

The factor,subject, and/or category that is being examined.

n

The sample size number

Details

This function has a built in model were we create the treatment response with also including the blocking of the data(reponse~treatment). Also gives you diagnostics residual plots, and a TUKEY HSD so you can go past the anova table.

Value

Anova analysis of the model with a TukeyHSD with diagnostic plots

Note

More Packages to come to accommadate all models and designs in library called Novice ANOVA.

Author(s)

Joseph V. Lipoff, Will Pauls, Kaylin C. Dobbs, Jordan L. Jensen, Kevin Woods, Evan T. Johnson, Wyatt Fowler, Scott D. Zimmerman,and Paul Plummer

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
ap1<-c(101:105)
ap2<-c(110:114)
ap3<-c(150:154)

kil<-cbind.data.frame(ap1,ap2,ap3)

data(BostonHousing)
r=c(t(as.matrix(kil)))
k=3
f=c("Ap1", "Ap2", "Ap3")
n=5

CRandom(r,k,f,n)

NMVANOVA documentation built on Oct. 6, 2019, 5:05 p.m.