Nothing
#' This function draws the power graph, with curves sorted by the mean power and smoothed for easier reading.
#' @param pwr a matrix of power values, usually from the twosample_power command
#' @param xname Name of variable on x axis
#' @param title (Optional) title of graph
#' @param Smooth =TRUE lines are smoothed for easier reading
#' @param span =0.25bandwidth of smoothing method
#' @return plt, an object of class ggplot.
#' @export
plot_power=function(pwr, xname=" ", title, Smooth=TRUE, span=0.25) {
# For CRAN CMD check
x=NULL
y=NULL
Method=NULL
# sort methods by their average power
mu=apply(pwr, 2, mean)
lvls = colnames(pwr)[order(mu, decreasing = TRUE)]
# create data frame
df=data.frame(x=rep(as.numeric(rownames(pwr)), ncol(pwr)),
y=100*c(pwr),
Method=factor(rep(colnames(pwr), each=nrow(pwr)),
levels=lvls,
ordered = TRUE))
# create ggplot graphics
plt=ggplot2::ggplot(data=df, ggplot2::aes(x=x, y=y, color=Method))+
ggplot2::xlab(xname)+
ggplot2::ylab("Power")+
ggplot2::scale_color_manual(labels=lvls,
values=seq_along(mu),
name='Method')
if(!missing(title))
plt=plt+ggplot2::ggtitle(title)
if(Smooth) plt=plt+
ggplot2::geom_smooth(formula = y ~ x, method="loess", se=FALSE, span=span)
else plt=plt+ggplot2::geom_line()
plt
}
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.