Creates a DataFrame for the given range
sdf_seq(
sc,
from = 1L,
to = 1L,
by = 1L,
repartition = NULL,
type = c("integer", "integer64")
)
The associated Spark connection.
The start and end to use as a range
The increment of the sequence.
The number of partitions to use when distributing the data across the Spark cluster. Defaults to the minimum number of partitions.
The data type to use for the index, either "integer"
or "integer64"
.