Nothing
#' @method as.data.frame diffAnalysisClass
#' @rdname as.data.frame
#' @export
as.data.frame.diffAnalysisClass <- function(x,...){
efres <- tidyEffectSize(x)
kwres <- x@kwres
difftb <- merge(efres, kwres, by.x="f", by.y="f")
difftb <- difftb[order(difftb$pvalue),]
return(difftb)
}
#' @method as.data.frame alphasample
#' @rdname as.data.frame
#' @export
as.data.frame.alphasample <- function(x, ...){
dat <- x@alpha
if (!is.null(x@sampleda)){
dat <- merge(dat, x@sampleda, by=0)
rownames(dat) <- as.vector(dat$Row.names)
dat$Row.names <- NULL
}
return(dat)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.