Skip to content

Commit

Permalink
change to list
Browse files Browse the repository at this point in the history
Co-authored-by: Barbara Vreede <[email protected]>
  • Loading branch information
mdingemanse and bvreede authored Aug 22, 2024
1 parent 72d32f5 commit f867c58
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vignettes/workflows.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ data <- init(ifadv::ifadv)
```

Essential to any `talkr` workflow is a minimal set of data fields. These are the following: \* `source`: the source conversation (a corpus can consist of multiple sources) \* `begin`: begin time (in ms) of an utterance \* `end`: end time (in ms) of an utterance \* `utterance`: content of an utterance \* `participant`: the person who produced the utterance
Essential to any `talkr` workflow is a minimal set of data fields. These are the following:

- `source`: the source conversation (a corpus can consist of multiple sources)
- `begin`: begin time (in ms) of an utterance
- `end`: end time (in ms) of an utterance
- `utterance`: content of an utterance
- `participant`: the person who produced the utterance

The `init()` function takes these minimal fields and generates a few more based on them. These are: \* `uid`: a unique identifier at utterance-level, used to identify, select and felter specific utterances \* `duration`: the duration (in ms) of the utterance, generated by subtracting `begin` from `end`

Expand Down

0 comments on commit f867c58

Please sign in to comment.