I have a data frame like this, where column 1 has different values and ends with a country.
Col1 col2 Col3 col4
A 0 0 1
B 1 0 3
c 4 0 6
D 5 6 7
China na na na
A 0 1 3
B 2 4 5
C 3 5 6
D 1 2 3
E 5 3 3
England na na na
I want to achieve something like the following, so I need to create a new column with the country name manipulated until the row where the country name is is matched.
Col1 col2 Col3 col4 col5
A 0 0 1 China
B 1 0 3 china
c 4 0 6 china
D 5 6 7 china
China na na na china
A 0 1 3 England
B 2 4 5 England
C 3 5 6 England
D 1 2 3 England
E 5 3 3 England
England na na na England
...plus I have 40 other countries to work with. I am new to R and struggling with on how to achieve my desired result.
Another hacky method: Using
Col1
as starting point, make all the observations having a single characterNA
. Then fill theNA
s with the last value.