I want to regroup this two variables R (votefr, voteaut) together how can I do it? To have in fine only one variable with the french vote and the austrian vote (maybe votefraut). (below the table of this two variables)
table(d$votefr)
Centre-droite Extreme-droite Gauche
455 117 356
table(d$voteaut)
Centre-Droite Extreme-Droite Gauche
424 208 545
The result that I want is:
table(d$votefraut)
Centre-Droite Extreme-Droite Gauche
879 325 901