Displaying 2 results from an estimated 2 matches for "score6".
Did you mean:
  scores
  
2006 Jun 23
1
Problems creating packages.
...hecking package dependencies ... OK
* checking if this is a source package ... ERROR
Only *source* packages can be checked.
Here is what my file structure looks like:
.:
DESCRIPTION  man  R
./man:
bootstrap.rd  hessian.rd         loglikelihood.rd  stdeviation6.rd
freq.rd       ks.rd              score6.rd         stdeviation.rd
hessian6.rd   loglikelihood6.rd  score.rd
./R:
bootsample.r  hessian6.r  loglikelihood6.r  score6.r        stdeviation.r
firstlib.r    hessian.r   loglikelihood.r   score.r
freq.r        ks.r        Prob.r            stdeviation6.r
here is what my DESCRIPTION file looks...
2007 Feb 02
1
Snow Package and R: Exported Variable Problem
...ince snow, or R for that matter, has next to no ability  
to debug) I found that the error cropped up in this statement:
theta6 = optim(c(0,0,0,0,0,0,.2), loglikelihood, scrore6, method =  
"CG", control=list(fnscale=-1,reltol=1e-8,maxit=2000))$par
Both the functions loglikelelihood and score6 use x1, but I know that  
it is getting exported to the node correctly since it gets assigned  
earlier in the simulation:
x1 = rep(0,n1)
The error I stated above happens fo every itteration of the simulation  
(499 times) and I'm really at a loss as to why its happening and what  
I can do t...