showDF {SparkR}R Documentation

showDF

Description

Print the first numRows rows of a SparkDataFrame

Usage

showDF(x, ...)

## S4 method for signature 'SparkDataFrame'
showDF(x, numRows = 20, truncate = TRUE)

Arguments

x

A SparkDataFrame

numRows

The number of rows to print. Defaults to 20.

See Also

Other SparkDataFrame functions: SparkDataFrame-class, [[, agg, arrange, as.data.frame, attach, cache, collect, colnames, coltypes, columns, count, dapply, describe, dim, distinct, dropDuplicates, dropna, drop, dtypes, except, explain, filter, first, group_by, head, histogram, insertInto, intersect, isLocal, join, limit, merge, mutate, ncol, persist, printSchema, registerTempTable, rename, repartition, sample, saveAsTable, selectExpr, select, show, str, take, unionAll, unpersist, withColumn, write.df, write.jdbc, write.json, write.parquet, write.text

Examples

## Not run: 
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D path <- "path/to/file.json"
##D df <- read.json(sqlContext, path)
##D showDF(df)
## End(Not run)

[Package SparkR version 2.0.0 Index]