Re: [R] using myfunction in stat_function

2018-06-07 Thread Jeff Newmiller
Your example is not reproducible. Perhaps read [1] [1] http://rstudio-pubs-static.s3.amazonaws.com/3365_9573f6d661b99365fe1841ee65d3.html On June 6, 2018 8:04:44 PM PDT, Veerappa Chetty wrote: >HI, > >I use solve(A,b) inside my function, myfun2; it works fine when I >return >one value or a

Re: [R] using myfunction in stat_function

2018-06-06 Thread David Winsemius
> On Jun 6, 2018, at 8:04 PM, Veerappa Chetty wrote: > > HI, > > I use solve(A,b) inside my function, myfun2; it works fine when I return > one value or a list. > > I want use the return values in ggplot as below: > ggplot(data.frame( > x=c(0.1,0.8)),aes(x=x))+stat_function(fun=myfun.2,geom

[R] using myfunction in stat_function

2018-06-06 Thread Veerappa Chetty
HI, I use solve(A,b) inside my function, myfun2; it works fine when I return one value or a list. I want use the return values in ggplot as below: ggplot(data.frame( x=c(0.1,0.8)),aes(x=x))+stat_function(fun=myfun.2,geom="line") I get a blank graph. Would greatly appreciate help! Thanks. -- Pr