R
Table of Contents
Section titled “Table of Contents”Installation
Section titled “Installation”To install the latest release from CRAN:
Load package:
List available namespaces and tables:
Lazily load a table (returns a tbl_lazy object):
Filter columns and rows of the lazy table using dplyr verbs:
Collect to a tibble object (triggers data download):
Or, collect to a plain data frame (also triggers download):
Functions
Section titled “Functions”| Signature | Description | Returns |
|---|---|---|
list_namespaces() |
List namespace identifiers. | character |
list_tables(namespace = NULL) |
List all tables, filtered to a namespace if specified. | character |
describe_namespace(name) |
Inspect namespace metadata. | list |
describe_table(name) |
Inspect table metadata. | list |
load_table(name) |
Lazily load the specified table identifier. | tbl_lazy |