On Fri, 19 Sep 2003, Wolski wrote:
>
> The second problem i have are that i want to store parmeters to the plot.default 
> function in a list. eg.: pars<-list(xlim=c(0,100),xlab="irrelevant" , 
> ylab="incredible important").
> and call the plot.default function with this list as parameters.
>
> I know that there are the way with eval(parse(text = paste("plot.default",........
>

do.call("f",list(a,b,c))

calls f(a,b,c)

which I think is what you want.

        -thomas

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to