LSD.miss {Missplot} | R Documentation |
Analysis of LSD when there is one missing observation
Description
Analysis of LSD when there is one missing observation
Usage
LSD.miss(data, row.miss, col.miss)
Arguments
data |
A data-frame containing response in the first column ,row number in the second column, column number in the third column , treatment number in the fourth column corresponding to the response value. |
row.miss |
Row number corresponding to the missing observation. |
col.miss |
Column number corresponding to the missing observation. |
Details
In design of experiments in LSD setup if there is one missing observation present in the design , we can use the function LSD.miss to estimate the missing observation for testing the differential effects for the treatments. Here, we estimate the missing obsevation by minimizing the SSE of the design.
Value
A data-frame containing x.hat , SSE x.hat , x_double.hat , SSE x_double.hat, F statistics , p-value.
Credits
Credits to Professor Surupa Chakraborty for building the theoritical concepts of Design of Experiment and Professor Madhura Dasgupta for basic concepts for R.
Remark
Information on row number and column number corresponding to the missing observation is to be known.
Author(s)
Saheli Datta , Shantanu Nayek
Examples
#Observation corresponding to the second row and third column is missing in the data
data=data.frame(res=rnorm(16,35,20),row_no=rep(1:4,each=4),col_no=rep(1:4,times=4),
treat=c(1,2,3,4,2,3,4,1,3,4,1,2,4,1,2,3))
LSD.miss(data,2,3)