Displaying 2 results from an estimated 2 matches for "h40".
Did you mean:
440
2008 Mar 20
2
I need help integrating ggplot2 into Excel
...tried the following in Macro mode:
Call RInterface.RRun("library(ggplot2)")
...
Call
RInterface.RRun("qplot(x=Hours,y=pH,data=ds,facets=Sample~.,geom=""line"",group=Cell)")
With no output ...
I have tried the following in Worksheet function mode:
if Range(H40:I42) contains:
"
(Embedded image moved to file: pic10654.jpg)
"
and Range(H48) contains:
"qplot"
The following call:
=Rcalla(H48;makeargs(H40:I42))
Gives me no output
Scratchpad mode
However, right clicking a cell containing:
qplot(x=Hours,y=pH,data=ds,facets=Sample~.,geom...
2012 Aug 14
1
Random effects in gam (mgcv 1.7-19)
Hi,
I am using the gam function in the mgcv package, I have random effects in
my model (bs="re") this has worked fine, but after I updated the mgcv
package to version 1.7-19 I recive an error message when I run the model.
>
fit1<-gam(IV~s(RUTE,bs="re")+s(T13)+s(H40)+factor(AAR)+s(V3)+s(G1)+s(H1)+s(V1)+factor(LEDD),data=data5,method="ML")
> summary.gam(fit1)
Error in mroot(Ve[ind, ind]) : Supplied matrix not symmetric
This same model worked fine before I updated the mgcv package, does anyone
know why I now get the error message?
Another question...