qdap (version 2.4.3)

condense: Condense Dataframe Columns

Description

Condense dataframe columns that are a list of vectors to a single vector of strings.

Usage

condense(dataframe, sep = ", ")

Arguments

dataframe

A dataframe with a column(s) that are a list of vectors.

sep

A character string to separate the terms.

Value

Returns a dataframe with condensed columns that can be wrote to csv/xlsx.

See Also

mcsv_w

Examples

Run this code
# NOT RUN {
library(qdap)
poldat <- with(DATA.SPLIT, polarity(state, person))
write.csv(x = condense(counts(poldat)), file = "foo.csv")
# }

Run the code above in your browser using DataCamp Workspace