I would like to rename() or combine() different speakers' names in the same observation. For example, I have a variable called "speaker" with several speakers' names with Lithuanian characters. When I try to put observations together in one name, it does not work when the name has Lithuanian alphabet characters. I guess that the alphabet is the problem because it works well with names without these Lithuan alphabet characters.
For example:
lithu_comb[lithu_comb$speaker == "Č. Juršėnas L Ų", ] <- "Č. Juršėnas"
lithu_comb <- lithu_comb[!(lithu_comb$speaker=="Ąž Tė. T S Ąžė K Ų Ū Ū.S Ąžė Ū Į Ką Ū Žū Ė J . Są Įų Į Ė S Ąš Į Ų Ųų"
In the first one, I try to combine the observations because it is the same speaker, but the names are badly written. In the second case, I try to drop the observations because this is not a real speaker name.
The code does not work in both cases but works well with no Lithuanian alphabet.
Thank you very much for any feedback or advice, and sorry in advance if I made any mistake in the post.
Alberto