This is my vector
c("A~B", "C~D", "E~F", "G~H","I~J","K~L")
My original vector is much bigger than this. All I nees is to have an output like this:
c("A~B+time", "C~D+time", "E~F+time", "G~H+time","I~J+time","K~L+time")
Without doing manually.
Dplyr package could help me here?
Any help?