Skip to contents

Returns a tibble of table names within a WRDS library (schema), with human-readable descriptions where available.

Usage

list_tables(wrds, library)

Arguments

wrds

A DBIConnection object returned by wrds_connect().

library

Character. The name of the library (schema) to query.

Value

A tibble with columns table and description.

Examples

if (FALSE) { # \dontrun{
wrds <- wrds_connect()
list_tables(wrds, "comp")
wrds_disconnect(wrds)
} # }