Displaying 1 result from an estimated 1 matches for "nawaline".
Did you mean:
nawaline2
2006 Jul 20
2
function names in a vector used by for (){} character problem ?
...are density.default$kernels, but thats not my question
here. my own kernel functions are running and working.
my problem is the following is not working:
dev.off()
par(mfrow=c(3,3))
for(i in 1:length(bw))
{
for(j in 1:length(kernels))
{
par(mfg = c(i, j))
nawaline2(eruptions,waiting,kernels[j],bw[i],1000)
# FYI: the following worked but ofcourse all rows were the same
# nawaline2(eruptions,waiting,gauss,bw[i],1000)
}
}
# here are the standard arguments for nawaline, kern exspects a
function like gaussian, epan or rectangular.
nawaline2(xi,yi...