Nothing
library(profileplyr)
library(soGGi)
context("Test subsetting and indexing")
data(chipExampleBig)
p <- as_profileplyr(chipExampleBig,names = "name")
pRowFilt <- p[1:200,]
pColumnFilt <- p[,1:100]
pSampleFilt <- p[,,3:4]
expect_that(is(pRowFilt,"profileplyr"),is_true())
expect_that(is(pColumnFilt,"profileplyr"),is_true())
expect_that(is(pSampleFilt,"profileplyr"),is_true())
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.