Description Usage Arguments Value See Also Examples
Construct a TimeSeriesRDD containing time series data from a Spark DataFrame
1 2 3 4 5 6 7 8 9 10 11 12 13 |
sdf |
A Spark DataFrame object |
is_sorted |
Whether the rows being imported are already sorted by time |
time_unit |
Time unit of the time column (must be one of the following values: "NANOSECONDS", "MICROSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS" |
time_column |
Name of the time column |
A TimeSeriesRDD useable by the Flint time series library
Other Spark dataframe utility functions:
collect.ts_rdd()
,
from_rdd()
,
spark_connection.ts_rdd()
,
spark_dataframe.ts_rdd()
,
spark_jobj.ts_rdd()
,
to_sdf()
,
ts_rdd_builder()
Other Spark dataframe utility functions:
collect.ts_rdd()
,
from_rdd()
,
spark_connection.ts_rdd()
,
spark_dataframe.ts_rdd()
,
spark_jobj.ts_rdd()
,
to_sdf()
,
ts_rdd_builder()
1 2 3 4 5 6 7 8 9 10 11 | library(sparklyr)
library(sparklyr.flint)
sc <- try_spark_connect(master = "local")
if (!is.null(sc)) {
sdf <- copy_to(sc, tibble::tibble(t = seq(10), v = seq(10)))
ts <- from_sdf(sdf, is_sorted = TRUE, time_unit = "SECONDS", time_column = "t")
} else {
message("Unable to establish a Spark connection!")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.