Encode using run-length encoding
encode(x, ...) # S4 method for DataFrame encode(x) # S4 method for Ranges encode(x)
x | Object. |
---|---|
... | Additional arguments. |
Modified object.
All atomic
columns will be encoded to Rle
S4 class.
Updated 2021-02-11.
## DataFrame ==== binary <- seq(from = 0L, to = 1L) df <- DataFrame( a = rep(x = binary, times = 50L), b = rep(x = binary, each = 50L) ) lapply(df, class)#> $a #> [1] "integer" #> #> $b #> [1] "integer" #>#> $a #> [1] "Rle" #> attr(,"package") #> [1] "S4Vectors" #> #> $b #> [1] "Rle" #> attr(,"package") #> [1] "S4Vectors" #>