On Aug 28, 2010, at 4:48 PM, Sancar Adali wrote:
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,
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
Try this:
> LinePlot(1,1)
> LinePlot=function(a,b){
+ # a = slope
+ # b = y intercept
+ x=seq(-10,10,0.4)
+ y=a*x+b
+ plot(x,y, type="l")
+ title(paste("a=",a,"b=",b))
+ }
>
> #test
> LinePlot(a=-2,b=9)
HTH
--
View this message in context:
http://r.789695.n4.nabble.com/expression-and-plot-t
Here is a suggestion you may care to develop
func <- function(a, b) {
plot(1:10)
title(main = bquote(a == .(a)*','~ b == .(b)))
invisible()
}
try with
func(1,2)
func(36, 2^10)
&c
-Original Message-
From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-proj
On Aug 28, 2010, at 12:53 AM, Sancar Adali 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
refl
5 matches
Mail list logo