vector_code: Prints the code to create a given vector

View source: R/vector_code.R

vector_codeR Documentation

Prints the code to create a given vector

Description

This function prints the code to create a given vector.

Usage

vector_code(a, line_breaks = FALSE)

Arguments

a

A vector of elements for which the printed code will create.

line_breaks

Set to TRUE to print a new line in between each string

Examples

# Create a set of strings:
strings <- c('one', 'two', 'one', 'three', 'two', 'four')

# Print code to create the set of all unique string values:
vector_code(unique(strings))

# Print code with new lines in between each string:
vector_code(unique(strings), line_breaks = TRUE)

jhelvy/jhelvyr documentation built on May 17, 2023, 8:46 p.m.