Search notes:

R package: DT

The package DT is a wrapper around the JavaScript library DataTable.

datatable

The function datatable(df) allows to inspect a data frame in a HTML table:
df <- data.frame(
   col_one = c( 5    , 3     , 1   , 4    , 7     , 9    , 6   ),
   col_two = c('five','three','one','four','seven','nine','six')
);

DT::datatable(df);
Github repository about-r, path: /packages/DT/datatable.R
A search term can be entered into the search box in the HTML document:
Compare with the View(…) function.

See also

R packages

Index