list2str {plotfunctions}R Documentation

Combine list values as string.

Description

Combine list values as string.

Usage

list2str(x, inputlist)

Arguments

x

A vector with the names or numbers of list elements to be combined.

inputlist

A (named) list with information, e.g., graphical parameter settings.

Value

String

See Also

Other Utility functions: findAbsMin(), find_n_neighbors(), firstLetterCap(), getArrowPos(), getDec(), getRange(), getRatioCoords(), get_palette(), group_sort(), inch2coords(), isColor(), move_n_point(), orderBoxplot(), se(), sortGroups()

Examples

test <- list(a=c(1,2,3), b='a', c=c(TRUE, FALSE), d='test')
list2str(c('a','c', 'd'), test) 

[Package plotfunctions version 1.4 Index]