Assorted functions for manipulating tibble
objects.
# S4 method for tbl_df nrow(x) # S4 method for tbl_df ncol(x) # S4 method for tbl_df as.list(x)
x |
|
---|
The following methods are provided from manipulating
tibble
objects.
extract integer
number of rows.
extract integer
number of columns.
convert to a list
.
print the object.
#>#> [1] 5#> [1] 1#> $value #> [1] 1 2 3 4 5 #>