Displaying 1 result from an estimated 1 matches for "5npka".
Did you mean:
5npkb
2008 Jun 18
5
paste data
...uto.0b, auto.0c, auto.5Na,...), that has similar names.
I could print the names all at once wih a loop with the command paste(), see below:
plot<-c("0a","0b","0c","5Na","5Nb","5Nc","PKa","PKb","PKc","5NPKa","5NPKb",
"5NPKc","10NPKa","10NPKb","10NPKc","20NPKa","20NPKb","20NPKc")
for (x in 1:length(plot))
{
name<-paste("auto.",plot[x],sep="")
print(name)
}
I want to do very similar things wi...