View source: R/cache_make_partitioning.R
cache_make_partitioning | R Documentation |
Builds suggested partitioning from the primary keys of the table.
cache_make_partitioning(x, primary_keys = cache_get_attributes(x)$primary_keys)
x |
data.frame |
primary_keys |
primary keys to set partitioning with |
an unevaluated expression determining the partitioning
x <- data.frame(a = c(1, 2, 3), b = c("a", "b", "c"))
cache_make_partitioning(x, primary_keys = "a")
# expression a/10000
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.