text_to_list {mmints}R Documentation

Convert Text Input to List

Description

Convert Text Input to List

Usage

text_to_list(text_input)

Arguments

text_input

A text representation of a list.

Value

A list parsed from the input string.

Examples

# Create a named list
text_to_list("'one' = 1, 'two' = 2, 'three' = 3")

# Create a list of vectors
text_to_list("c('x1', 'x2'), c('x3', 'x4')")


[Package mmints version 0.1.0 Index]