Skip to contents

Displays a data.frame as an interactive table in the Viewer pane using reactable.

Usage

view(data, n = 10)

Arguments

data

A data.frame to display.

n

Integer. Number of rows per page. Default: 10.

Value

A reactable widget rendered in the Viewer pane.

Examples

if (requireNamespace("reactable", quietly = TRUE)) {
  view(iris)
}