There are multiple ways to quantify the number of characters that are exchanged over a scene or act boundary.
hamming(drama, variant = c("Trilcke", "Hamming", "NormalizedHamming")) scenicDifference(drama, norm = length(unique(drama$text$Speaker.figure_id)))
drama | The QDDrama Object |
---|---|
variant | For |
norm | For |
A list of values, one for each scene change. The values indicate the (potentially) normalized number of characters that are exchanged.
data(rksp.0) dist_trilcke <- hamming(rksp.0) dist_hamming <- hamming(rksp.0, variant = "Hamming") dist_nhamming <- hamming(rksp.0, variant = "NormalizedHamming")