My function is like this
sim.res<-gaussian_simulation(p=3, r=4, q=3, c=0.1,d=2,
Wchoice     = "avg",
pre.scaling = TRUE,
oos         = TRUE,
alpha       = NULL,
n = 100, m = 100, nmc = 100)

which is defined as
gaussian_simulation <- function(p, r, q, c,
                                 d           = p-1,
                                 pprime1     = p+q,   # cca arguments
                                 pprime2     = p+q,   # cca arguments
                                 Wchoice     = "avg",
                                 pre.scaling = TRUE,
                                 oos         = TRUE,
                                 alpha       = NULL,
                                 n = 100, m = 100, nmc = 100)
and I want to title the plot after I invoke the gaussian_simulation function
sim.res<-gaussian_simulation(p=3, r=4, q=3, c=0.1,d=2,
Wchoice     = "avg",
pre.scaling = TRUE,
oos         = TRUE,
alpha       = NULL,
n = 100, m = 100, nmc = 100)
plot(sim.res)
title("p=3, r=4, q=3, c=0.1,d=2")

On Sat, Aug 28, 2010 at 12:53 AM, Sancar Adali <sad...@gmail.com> wrote:

> What I want to do is put the arguments I supply to a function  into the
> title of a plot
> Say I'm calling func.1
> func.1(a=4,b=4)
> plot(....,..., title("a=4, b=4"))
> If I'm calling func.1 with different arguments, I want the plot title to
> reflect that.
> A small detail is that func.1 might have an argument with a default like
>  c=a+b. I tried using expression but couldn't get it to work.
>
> Is there a way to do this using expression() ?
>
> --
> Sancar Adali
>
>


-- 
Sancar Adali
Johns Hopkins University
Graduate Student

        [[alternative HTML version deleted]]

______________________________________________
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