#fast read table function
.fast.read.table = function(file, nrow){
# read contents
countC <- scan( file = file, what = character(), sep = "\t", skip = 0 )
countC1 <- matrix( countC, nrow, byrow = TRUE )
return(countC1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.