This is my problem:
this part of my script works:
paste(fileIn$DOY_L8,fileIn$type, sep="")
but not in this way
sat = "L8"
paste(fileIn$(paste("DOY_",sat,sep="")),fileIn$type, sep="")
The question is: it is possible to use the function "paste" after the $ ??
Thank you very much