On Tue, Apr 29, 2008 at 03:53:02PM +0200, Julien Roux wrote:
> Hi list,
> I created a function to plot my data:
> plot_function(vector)
> I want to write the name of the argument vector in the legend/title of 
> the plot.
> For example if I call:
> > plot_function(my_vector)
> I want "my_vector" to be written in the legend or title and so retrieve 
> the name of this object as a string.
> 
> Is it possible to achieve this?

While it might be possible, I think it would be better to use an extra
argument for this:

plot_function(my_vector, title = my_title)

Functions should be general, and relying on the name of the variable
makes your function less general. What if you in the future want to
use plot_function with an anynmous vector created dynamically? e.g by
combining two other vectors:

plot_function(c(foo, bar))

--
Hans Ekbrand (http://sociologi.cjb.net) <[EMAIL PROTECTED]>
GPG Fingerprint: 1408 C8D5 1E7D 4C9C C27E 014F 7C2C 872A 7050 614E

Attachment: signature.asc
Description: Digital signature

______________________________________________
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