as.data.frame {SparkR} | R Documentation |
This function downloads the contents of a SparkDataFrame into an R's data.frame. Since data.frames are held in memory, ensure that you have enough memory in your system to accommodate the contents.
as.data.frame(x, row.names = NULL, optional = FALSE, ...) ## S4 method for signature 'SparkDataFrame' as.data.frame(x, row.names = NULL, optional = FALSE, ...)
x |
a SparkDataFrame. |
row.names |
|
optional |
If |
... |
additional arguments to pass to base::as.data.frame. |
A data.frame.
as.data.frame since 1.6.0
Other SparkDataFrame functions: SparkDataFrame-class
,
agg
, alias
,
arrange
,
attach,SparkDataFrame-method
,
broadcast
, cache
,
checkpoint
, coalesce
,
collect
, colnames
,
coltypes
,
createOrReplaceTempView
,
crossJoin
, cube
,
dapplyCollect
, dapply
,
describe
, dim
,
distinct
, dropDuplicates
,
dropna
, drop
,
dtypes
, exceptAll
,
except
, explain
,
filter
, first
,
gapplyCollect
, gapply
,
getNumPartitions
, group_by
,
head
, hint
,
histogram
, insertInto
,
intersectAll
, intersect
,
isLocal
, isStreaming
,
join
, limit
,
localCheckpoint
, merge
,
mutate
, ncol
,
nrow
, persist
,
printSchema
, randomSplit
,
rbind
, rename
,
repartitionByRange
,
repartition
, rollup
,
sample
, saveAsTable
,
schema
, selectExpr
,
select
, showDF
,
show
, storageLevel
,
str
, subset
,
summary
, take
,
toJSON
, unionByName
,
union
, unpersist
,
withColumn
, withWatermark
,
with
, write.df
,
write.jdbc
, write.json
,
write.orc
, write.parquet
,
write.stream
, write.text
## Not run:
##D irisDF <- createDataFrame(iris)
##D df <- as.data.frame(irisDF[irisDF$Species == "setosa", ])
## End(Not run)