| describe_table | R Documentation |
Displays a glimpse-like summary of a WRDS table showing column names
and types, similar to dplyr::glimpse().
describe_table(wrds, library, table, n = 20, max_cols = 25)
wrds |
A |
library |
Character. The name of the library (schema). |
table |
Character. The name of the table. |
n |
Integer. Number of sample rows to fetch for value preview. Default is 20. |
max_cols |
Integer. Maximum number of columns to display. Default is 25. |
Invisibly returns a list with components:
A data frame with column_name and data_type
Row count
A data frame with sample rows (if n > 0)
## Not run:
wrds <- wrds_connect()
describe_table(wrds, "comp", "funda")
wrds_disconnect(wrds)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.