Nothing
test_getPPI = function() {
x = matrix(1:10, ncol = 2)
y = matrix(5:14, ncol = 2)
checkEquals(ncol(getPPI(x, y, type = 'combine')), 4L)
checkEquals(ncol(getPPI(x, y, type = 'tensorprod')), 4L)
checkEquals(ncol(getPPI(x, y, type = 'entrywise')), 4L)
checkEquals(ncol(getPPI(x, y, type = c('combine', 'tensorprod'))), 8L)
checkEquals(ncol(getPPI(x, y, type = c('combine', 'entrywise'))), 8L)
checkEquals(ncol(getPPI(x, y, type = c('entrywise', 'tensorprod'))), 8L)
checkEquals(ncol(getPPI(x, y, type = c('combine', 'entrywise', 'tensorprod'))), 12L)
}
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.