R/data.R

# -----------------------------------------------------------------------------#
#' Artificially generated data alike that of Suspension bead arrays
#' 
#' The data that has similarity to Suspension bead arrays data. 
#' 
#' @docType data
#' @keywords datasets
#' 
#' @name sba
#' @usage data(sba1)
#' 
#' @format A list that consists of \code{"plate"} which is a \code{factor} of
#'         plate number, \code{"X"} that contains measured values where columns 
#'         are targets and rows are samples (or observations).
#' @examples
#' data(sba1)
#' 
#' # plot to check difference of geometric mean of every target between plates
#' sba_gm <- by(sba1$X, sba$plate, apply, 2, function(x) exp(mean(log(x))))	
#' par(mfrow= c(2, 3))
#' apply(combn(4, 2), 2, function(ea) {
#' 	plot(sba1_gm[[ea[1]]], sba_gm[[ea[2]]], xlab= names(sba1_gm)[ea[1]], 
#' 	     ylab= names(sba1_gm)[ea[2]], log= "xy", asp= 1)
#' 	abline(0, 1, col= "cadetblue")
#' })
#' 
#' # show first 10 observations in plate 1 and plate 2
#' print(sba1$X[c(1:10, 97:106), 1:10])		
#' 
# -----------------------------------------------------------------------------#
NULL
Rundmus/MDimNormn-R_package documentation built on May 29, 2019, 9:17 a.m.