Example data in python 3.5:
import pandas as pd
df=pd.DataFrame({"A":["x","y","z","t","f"],
"B":[1,2,1,2,4]})
This gives me a dataframe with 2 columns "A" and "B".
I then want to add a third column "C" that contains the value of "A" and "B" concatenated and separated by "_".
Following the suggestion from this answer I can do it like this.
for i in range(0,len(df["A"])):
df.loc[i,"C"]=df.loc[i,"A"]+"_"+str(df.loc[i,"B"])
I get the result I want but it seems convoluted for such a simple task.
In R this would be done like this:
df<-data.frame(A=c("x","y","z","t","f"),
B=c(1,2,1,2,4))
df$C<-paste(df$A,df$B,sep="_")
Another thread suggested the use of the "%" operator but I can't get it to work.
Is there a better alternative?