On 02.07.2008, at 15:31, Laura Poggio wrote:

Dear all,
sorry for this very basic question, but I did not find any good example yet.

I would like to set up a variable that can be recall later to substitute a
part of a file name.
As example:

var_filename = as.name("aaa")

jpeg("var_filename.jpg")
plot()
dev.off()

try:
var_filename <- 'foo'
jpeg( paste( var_filename, '.jpg', sep='' ) )

See ?paste

--Hans

______________________________________________
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