suff isn't a list, so lapply() isn't the right choice. How about instead:

> suff<- c("C1", "C2", "C3")
> sapply(suff, function(x)paste("filename_", x, ".ext", sep=""))
               C1                C2                C3
"filename_C1.ext" "filename_C2.ext" "filename_C3.ext"


On Wed, Mar 28, 2012 at 2:31 PM, Ed Siefker <ebs15...@gmail.com> wrote:
> I have a list of suffixes I want to turn into file names with extensions.
>
> suff<- c("C1", "C2", "C3")
> paste("filename_", suff[[1]], ".ext", sep="")
> [1] "filename_C1.ext"
>
> How do I use lapply() on that call to paste()?
> What's the right way to do this:
>
> filenames <-  lapply(suff, paste, ...)
>
> ?
>
> Can I have lapply() reorder the arguments to FUN?
>



-- 
Sarah Goslee
http://www.functionaldiversity.org

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to