showDF {SparkR} | R Documentation |
Print the first numRows rows of a SparkDataFrame
showDF(x, ...) ## S4 method for signature 'SparkDataFrame' showDF(x, numRows = 20, truncate = TRUE)
x |
a SparkDataFrame. |
... |
further arguments to be passed to or from other methods. |
numRows |
the number of rows to print. Defaults to 20. |
truncate |
whether truncate long strings. If |
showDF since 1.4.0
Other SparkDataFrame functions: SparkDataFrame-class
,
agg
, arrange
,
as.data.frame
, attach
,
cache
, coalesce
,
collect
, colnames
,
coltypes
,
createOrReplaceTempView
,
crossJoin
, dapplyCollect
,
dapply
, describe
,
dim
, distinct
,
dropDuplicates
, dropna
,
drop
, dtypes
,
except
, explain
,
filter
, first
,
gapplyCollect
, gapply
,
getNumPartitions
, group_by
,
head
, histogram
,
insertInto
, intersect
,
isLocal
, join
,
limit
, merge
,
mutate
, ncol
,
nrow
, persist
,
printSchema
, randomSplit
,
rbind
, registerTempTable
,
rename
, repartition
,
sample
, saveAsTable
,
schema
, selectExpr
,
select
, show
,
storageLevel
, str
,
subset
, take
,
union
, unpersist
,
withColumn
, with
,
write.df
, write.jdbc
,
write.json
, write.orc
,
write.parquet
, write.text
## Not run:
##D sparkR.session()
##D path <- "path/to/file.json"
##D df <- read.json(path)
##D showDF(df)
## End(Not run)