Learn R Programming

KEGGgraph (version 1.30.0)

getNamedElement: Extract the value in a vector by name

Description

The function extracts the value(s) in a named vector by given name(s), in case no element is found with the given name, NA will be returned

Usage

getNamedElement(vector, name)

Arguments

vector
A named vector of any data type
name
Wanted name

Value

The elements with the given name, 'NA' in case no one was found

Examples

Run this code
vec <- c(first="Hamburg", second="Hoffenheim",third="Bremen")
getNamedElement(vec, "third")
getNamedElement(vec, "last")

Run the code above in your browser using DataLab