Learn R Programming

notebookutils (version 1.5.3)

display: Set the dataframe info which needs to be visualized.

Description

Set the dataframe info which needs to be visualized.

Usage

display(dataFrame, isSummary = FALSE)

Value

No return value, show the first part of passed dataFrame.

Arguments

dataFrame

the dataframe that needs to be visualized.

isSummary

whether show summary info of the dataframe.

Examples

Run this code
data <- list(56,78,90,45,67)
df <- data.frame(t(sapply(data,c)))
display(df)
display(df, TRUE)

Run the code above in your browser using DataLab