Nothing
test_RectangularData_basic <- function() {
x <- DataFrame(a = 1:10, b = 11:20)
y <- as.data.frame(x)
checkIdentical(x[,1], y[,1])
checkIdentical(as.data.frame(x[,2:1]), y[,2:1])
# checkIdentical(as.data.frame(cbind(x,x)), cbind(y,y))
checkIdentical(dim(x), dim(y))
checkIdentical(nrow(x), nrow(y))
checkIdentical(ncol(x), ncol(y))
checkIdentical(as.data.frame(head(x)), head(y))
checkIdentical(as.data.frame(rbind(x,x)), rbind(y,y))
# checkIdentical(as.data.frame(tail(x)), tail(y))
}
test_RectangularData_subset <- function() {
y <- airquality
rownames(y) <- as.character(seq_len(nrow(y)))
x <- as(y, "DataFrame")
checkIdentical(as.data.frame(subset(x, Temp > 80, select = c(Ozone, Temp))),
subset(y, Temp > 80, select = c(Ozone, Temp)))
checkIdentical(as.data.frame(subset(x, Day == 1, select = -Temp)),
subset(y, Day == 1, select = -Temp))
checkIdentical(as.data.frame(subset(x, select = Ozone:Wind)),
subset(y, select = Ozone:Wind))
}
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.