Let's say, I am having the following:
n s
1 Alabama NA
2 New Hampshire
3 New York
and from that I wanted to combine the two columns into one without the NA value:
n
1 Alabama
2 New Hampshire
3 New York
How I can perform that? I tried using paste() but it in turn also pasted in the NA value as Alabama NA. Please let me know!