ropensci / allodb

An R package for biomass estimation at extratropical forest plots.
https://docs.ropensci.org/allodb/
GNU General Public License v3.0
36 stars 11 forks source link

Polish description of return values #188

Closed maurolepore closed 3 years ago

maurolepore commented 3 years ago

The description of some return values says somethins like

A dataframe object (tibble::tibble()) ...

But tibble::tibble() is not the name of a class but the name of the function that constructs tibbles. Formally the class of a tibble is "data.frame", and the name of the subclasses are "tbl" and "tbl_df":

class(tibble::tibble(x = 1))
#> [1] "tbl_df"     "tbl"        "data.frame"
gonzalezeb commented 3 years ago

sure, please change accordingly if easy.