values {autonomics}R Documentation

Get/Set expr values

Description

Get/Set value matrix

Usage

values(object)

## S4 method for signature 'SummarizedExperiment'
values(object)

values(object) <- value

## S4 replacement method for signature 'SummarizedExperiment,matrix'
values(object) <- value

## S4 replacement method for signature 'SummarizedExperiment,numeric'
values(object) <- value

Arguments

object

SummarizedExperiment

value

ratio matrix (features x samples)

Value

value matrix (get) or updated object (set)

Examples

file <- download_data('billing16.proteingroups.txt')
object <- read_proteingroups(file, plot=FALSE)
values(object)[1:3, 1:3]
values(object) <- 0
values(object)[1:3, 1:3]

[Package autonomics version 1.2.0 Index]