Learn R Programming

caroline (version 0.5.0)

nv: Create a named vector from a dataframe, table or vector

Description

The '$' or "[," operators for dataframes and tables do not carry along with them the row names. This function provides a solution for this problem. Optionally, you can pass a vector to x and use name to name it (great for default parameters)

Usage

nv(x, name)

Arguments

x
The source dataframe, table, or vector
name
The column name you would like to pull out as a named vector. OR the names of the vector (if x is a vector)

Value

  • a named vector

Examples

Run this code
## example 1: pulling a row.named vector out of a dataframe
df <- data.frame(a=c(1,2,34,4,5,3,23), b=c('z','x','y','z','x','n','p'))
rownames(df) <- letters[1:nrow(df)]
nv(df,'a')
nv(df,'b')

## example 2: a naming vectors from scratch
nv(c(1,2,3), c('a','b','c'))
nv(df$a, df$b)

Run the code above in your browser using DataLab