Nothing
test_predictTestSet <- function(){
tmpfile <- tempfile()
testFile = system.file("extdata", "test.bed", package="cleanUpdTSeq")
load(system.file("extdata", "test-predNaiveBayes.rds", package="cleanUpdTSeq"))
predictTestSet(Ndata.NaiveBayes,
Pdata.NaiveBayes,
testSet.NaiveBayes,
outputFile=tmpfile,
assignmentCutoff = 0.5)
x <- read.delim(system.file("extdata", "test-predNaiveBayes.xls", package="cleanUpdTSeq"))
y <- read.delim(tmpfile)
checkIdentical(format(x, digits=7), format(y, digits=7))
unlink(tmpfile)
classifier <- buildClassifier(Ndata.NaiveBayes,
Pdata.NaiveBayes)
predictTestSet(testSet.NaiveBayes=testSet.NaiveBayes,
classifier=classifier,
outputFile=tmpfile,
assignmentCutoff = 0.5)
z <- read.delim(tmpfile)
checkIdentical(format(x, digits=7), format(z, digits=7))
unlink(tmpfile)
}
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.