cm_df.temp: Break Transcript Dialogue into Blank Code Matrix

Description Usage Arguments Value References See Also Examples

View source: R/cm_df.temp.R

Description

Breaks transcript dialogue into words while retaining the demographic factors associate with each word. The codes argument provides a matrix of zeros that can serve as a dummy coded matrix of codes per word.

Usage

1
2
3
4
5
6
7
8
9
cm_df.temp(
  dataframe,
  text.var,
  codes = NULL,
  file = NULL,
  transpose = FALSE,
  strip = FALSE,
  ...
)

Arguments

dataframe

A dataframe containing a text variable.

text.var

The name of the text variable.

codes

Optional list of codes.

file

The name of the file (csv is recommended file type). If NULL no file is written.

transpose

logical. If TRUE transposes the dataframe so that the text is across the top.

strip

logical. If TRUE all punctuation is removed.

...

Other arguments passed to strip.

Value

Generates a dataframe, and optional csv file, of individual words while maintaining demographic information. If a vector of codes is provided the outcome is a matrix of words used by codes filled with zeros. This dataframe is useful for dummy coded (1-yes code exists; 0-no it does not) representation of data and can be used for visualizations and statistical analysis.

References

Miles, M. B. & Huberman, A. M. (1994). An expanded sourcebook: Qualitative data analysis. 2nd ed. Thousand Oaks, CA: SAGE Publications.

See Also

cm_range2long, cm_df.transcript, cm_df.fill

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
codes <- qcv(dc, sf, wes, pol, rejk, lk, azx, mmm)
out1 <- cm_df.temp(DATA, "state", codes)
head(out1, 15)
out2 <- cm_df.temp(DATA, "state", codes, transpose = TRUE)
out2[, 1:10]
out3 <- cm_df.temp(raj.act.1, "dialogue", codes)
head(out3, 15)
out4 <- cm_df.temp(raj.act.1, "dialogue", codes, transpose = TRUE)
out4 [, 1:8]

## End(Not run)

trinker/qdap documentation built on Sept. 30, 2020, 6:28 p.m.