powered by
Assorted functions for manipulating tibble::tibble() objects.
tibble::tibble()
# S4 method for tbl_df nrow(x)# S4 method for tbl_df ncol(x)# S4 method for tbl_df as.list(x)
# S4 method for tbl_df ncol(x)
# S4 method for tbl_df as.list(x)
tibble::tibble() object.
The following methods are provided from manipulating tibble::tibble() objects.
extract integer number of rows.
integer
extract integer number of columns.
convert to a list.
list
print the object.
# load tibble package require(tibble) # make tibble a <- tibble(value = seq_len(5)) # number of rows nrow(a) # number of columns ncol(a) # convert to list as.list(a)
Run the code above in your browser using DataLab