You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...with the caveat that label scaling is not veridical to utterance duration
E.g. this:
ggplot(aes(x = line_end, y = line_participant)) +
ggtitle("Relative frequency of elements within turns") +
scale_y_reverse() + # we reverse the axis because lines run top to bottom
geom_label(aes(
begin = line_begin-800,
end = line_end-800,
label = utterance)) +
xlab("Time (ms)") +
ylab("") +
theme_turnPlot()
The text was updated successfully, but these errors were encountered:
Very hacky, so more work needed, but here's what I'm calling a fish bone plot — a fairly readable way of looking at the temporal structure of a conversation. Code in elpaco-escience/playground@2a1689e (direct link).
...with the caveat that label scaling is not veridical to utterance duration
E.g. this:
The text was updated successfully, but these errors were encountered: