split_expand: Split One Column and Expand

View source: R/split_expand.R

split_expandR Documentation

Split One Column and Expand

Description

Split One Column and Expand

Usage

split_expand(data, variable, sep)

Arguments

data

dataframe or matrix

variable

one column name with connected values

sep

seperated symbol, which can be one or more

Value

expanded dataframe or matrix

Examples

df=data.frame(a=c(1,0),
              b=c('a','n'),
           cyl=c('6;6;4;4;4',
                 '6;8;'))
split_expand(data=df,variable='cyl',sep=';')

do documentation built on Sept. 12, 2024, 6:27 a.m.