Learn R Programming

nanny (version 0.1.8)

as_matrix: Get matrix from tibble

Description

Get matrix from tibble

as_matrix

as_matrix

Usage

as_matrix(.data, rownames = NULL, do_check = TRUE, sep_rownames = "___")

# S4 method for spec_tbl_df as_matrix(.data, rownames = NULL, do_check = TRUE, sep_rownames = "___")

# S4 method for tbl_df as_matrix(.data, rownames = NULL, do_check = TRUE, sep_rownames = "___")

Arguments

.data

A tibble

rownames

A character string of the rownames

do_check

A boolean

sep_rownames

A character with which multiple columns are united if rownames is a column array (e.g., rownames = c(col1, col2))

Value

A matrix

A `tbl` with filled abundance

A `tbl` with filled abundance

Examples

Run this code
# NOT RUN {
 library(dplyr)
 library(tidyr)
 select(mtcars_tidy, car_model, feature, value) %>%
	spread(feature, value) %>%
	as_matrix(rownames = car_model) 
	
# }

Run the code above in your browser using DataLab