Nothing
context("CoGAPS")
test_that("Checkpoint System",
{
if (CoGAPS::checkpointsEnabled())
{
data(GIST)
run1 <- CoGAPS(GIST.matrix, checkpointInterval=51, seed=22,
checkpointOutFile="test.out", messages=FALSE, nIterations=100)
run2 <- CoGAPS(GIST.matrix, checkpointInFile="test.out", messages=FALSE,
nIterations=100, seed=33)
file.remove("test.out")
expect_true(all.equal(run1@featureLoadings, run2@featureLoadings))
expect_true(all.equal(run1@sampleFactors, run2@sampleFactors))
}
})
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.