rddlist: Create an rddlist from a local R list.

Description Usage Arguments Value Examples

Description

Each element of the local R list corresponds to an element of the Spark RDD (Resilient Distributed Dataset)

Usage

1
rddlist(sc, X, cache = TRUE)

Arguments

sc

Spark connection as returned from start_shell

X

local R list.

cache

logical - Should the resulting RDD be cached in Spark's memory?

Value

rddlist A Spark Java Object representing the rddlist

Examples

1
2
x <- list(1:10, letters, rnorm(10))
xrdd <- rddlist(sc, x)

clarkfitzg/rddlist documentation built on May 13, 2019, 7:35 p.m.