row_counts {omopr}R Documentation

Compute row counts for supplied list of tables

Description

This function accepts a list of tibbles (such as returned by omopr_init) and computes the number of rows of data for each, returning the result as a tibble.

Usage

row_counts(listOfTblRefs)

Arguments

listOfTblRefs

A list of tibbles.

Value

A tibble containing the table names and their row counts.

See Also

omopr_init, concept_names

Examples

con = omopr:::dummy_con() # dummy connection to allow example to run

tRefs = omopr_init(con)
row_counts(tRefs)

[Package omopr version 0.3 Index]