`prinf` is a wrapper around `print` that returns all rows rather than just the first 10 by default.

prinf(df, ...)

Arguments

df

data frame

...

Any other valid option for `print()`.

Value

prints out all rows rather than default 10 rows.

Examples

if (FALSE) { # \dontrun{
df_geo %>% prinf() } # }