## ----setup, echo = FALSE-------------------------------------------------
knitr::opts_chunk$set(fig.width = 8, fig.height = 8)
knitr::opts_chunk$set(tidy = FALSE, cache = FALSE, autodep = TRUE)
## ----loadLib, message=FALSE, warning=FALSE-------------------------------
library(OPWpaper)
library(ggplot2)
library(reshape2) # library for the melt function
library(cowplot) # plot_grid function
## ----load_fwerPowerFdrPower_cont_data------------------------------------
ranksProb <- read.csv(system.file("simulations/results/ranksProb_byEffect_m10000.csv",
package = "OPWpaper"), h = TRUE)
ranksWeight_cont <- read.csv(system.file("simulations/results/Weight_byEffect_cont_m10000.csv",
package = "OPWpaper"), h = TRUE)
## ----plots---------------------------------------------------------------
prob_weight_plots(ey_index = c(7, 17, 27, 37), null_index = c(14, 17, 19),
m = 10000, ey = 2, null = 50, prob = ranksProb,
weight = ranksWeight_cont)
prob_weight_plots(ey_index = c(7, 17, 27, 37), null_index = c(34, 37, 39),
m = 10000, ey = 2, null = 90, prob = ranksProb,
weight = ranksWeight_cont)
prob_weight_plots(ey_index = c(6, 16, 26, 36), null_index = c(14, 17, 19),
m = 10000, ey = 1, null = 50, prob = ranksProb,
weight = ranksWeight_cont)
prob_weight_plots(ey_index = c(6, 16, 26, 36), null_index = c(34, 37, 39),
m = 10000, ey = 1, null = 90, prob = ranksProb,
weight = ranksWeight_cont)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.