as_matrix-methods: Get matrix from tibble

as_matrixR Documentation

Get matrix from tibble

Description

Get matrix from tibble

as_matrix

as_matrix

Usage

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

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

## S3 method for class '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


 library(dplyr)
 library(tidyr)
 select(mtcars_tidy, car_model, feature, value) %>%
	spread(feature, value) %>%
	as_matrix(rownames = car_model) 
	

stemangiola/nanny documentation built on July 29, 2023, 1:23 a.m.