cs: Combine unquoted items into a vector of character strings

Description Usage Arguments Details Value Examples

View source: R/AllFunctions.R View source: R/string_functions.R

Description

Combine unquoted items into a vector of character strings

Usage

1

Arguments

...

Unquoted single word strings.

Details

Works the same way that c() does for all types of data types. cs() allows you to quickly create vectors of single word strings without having to use quotes.

Value

A vector of character strings.

Examples

1
2
3
4
cs(a,b,a)
[1] "a" "b" "a"
cs(Hello, green, 99)
[1] "Hello" "green" "99"

andrewjameshaynes/helpeR documentation built on May 28, 2019, 2:44 p.m.