InterviewSolution
| 1. |
How to find the structure of a dataframe? |
|
Answer» str {SparkR} R Documentation Compactly DISPLAY the structure of a dataset Description Display the structure of a DataFrame, including column NAMES, column types, as well as a a small sample of rows. Usage ## S4 method for signature 'DataFrame' str(object) Arguments object a DataFrame See Also Other DataFrame FUNCTIONS: $, $<-, select, select, select,DataFrame,Column-method, select,DataFrame,list-method, selectExpr; DataFrame-class, dataFrame, groupedData; [, [, [[, subset; agg, agg, count,GroupedData-method, summarize, summarize; arrange, arrange, arrange, orderBy, orderBy; as.data.frame, as.data.frame,DataFrame-method; attach, attach,DataFrame-method; cache; collect; colnames, colnames, colnames<-, colnames<-, columns, names, names<-; coltypes, coltypes, coltypes<-, coltypes<-; columns, dtypes, printSchema, schema, schema; count, nrow; describe, describe, describe, summary, summary, summary,PipelineModel-method; dim; distinct, unique; dropna, dropna, fillna, fillna, na.omit, na.omit; dtypes; except, except; explain, explain; filter, filter, where, where; first, first; groupBy, groupBy, group_by, group_by; head; insertInto, insertInto; intersect, intersect; isLocal, isLocal; join; limit, limit; merge, merge; mutate, mutate, transform, transform; ncol; persist; printSchema; rbind, rbind, unionAll, unionAll; registerTempTable, registerTempTable; RENAME, rename, withColumnRenamed, withColumnRenamed; repartition; sample, sample, sample_frac, sample_frac; saveAsParquetFile, saveAsParquetFile, write.parquet, write.parquet; saveAsTable, saveAsTable; saveDF, saveDF, write.df, write.df, write.df; selectExpr; showDF, showDF; show, show, show,GroupedData-method; take; unpersist; withColumn, withColumn; write.json, write.json; write.text, write.text Examples ## Not run: ##D # Create a DataFrame from the Iris dataset ##D irisDF <- createDataFrame(sqlContext, iris) ##D ##D # Show the structure of the DataFrame ##D str(irisDF) ## End(Not run) [Package SparkR VERSION 1.6.1 Index] |
|