tabplot
We test the speed of tabplot
package with datasets over 1,00,000,000 records.
For this purpose we multiply the diamonds dataset from the ggplot2
package 2,000 times.
This dataset contains 53940 records and 10 variables.
require(ggplot2)
## Loading required package: ggplot2
data(diamonds)
## add some NA's
is.na(diamonds$price) <- diamonds$cut == "Ideal"
is.na(diamonds$cut) <- (runif(nrow(diamonds)) > 0.8)
n <- nrow(diamonds)
N <- 200L * n
## convert to ff format (not enough memory otherwise)
require(ffbase)
diamondsff <- as.ffdf(diamonds)
nrow(diamondsff) <- N
# fill with identical data
for (i in chunk(from = 1, to = N, by = n)) {
diamondsff[i, ] <- diamonds
}
The preparation step is the most time consuming. Per column, the rank order is determined.
system.time(p <- tablePrepare(diamondsff))
## user system elapsed
## 18.02 2.79 20.85
To focus on the processing time of the tableplot function, the plot
argument is set to FALSE
.
system.time(tab <- tableplot(p, plot = FALSE))
## user system elapsed
## 2.89 0.80 3.78
The following tableplots are samples with respectively 100, 1,000 and 10,000 objects per bin.
system.time(tab <- tableplot(p, sample = TRUE, sampleBinSize = 100, plot = FALSE))
## user system elapsed
## 0.04 0.03 0.08
system.time(tab <- tableplot(p, sample = TRUE, sampleBinSize = 1000, plot = FALSE))
## user system elapsed
## 0.22 0.03 0.25
system.time(tab <- tableplot(p, sample = TRUE, sampleBinSize = 10000, plot = FALSE))
## user system elapsed
## 1.34 0.28 1.62