I have a base with 2 rows and 68 observations called "varnomes" and would like to add the word "PF" at the end of each observation. With this, I tried to use the paste function:
varnomes<-paste(varnomes,"PF")
But I did not succeed.
The first three columns of my database are like this, for example:
a b c
g r v
And I want you to stay:
aPF bPF cPF
gPF rPF vPF
Any suggestion with apply or another function?