I notice one interesting thing while extracting specific data from my data frame.
When using the following command:
new1 <- total[total$PitchAccent=="H%",]
I get 12 occurrences of "H%"
.
However, when using:
new2 <- total[total$PitchAccent== c("H%", "L%"),]
I get again 12 occurences of both "H%"
and "L%"
, 8 and 4 accordingly.
That is I somehow lose 4 more occurrences of "H%"
.
How is that possible?