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":
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":