Re: [R] Error in drawing

2011-11-13 Thread Guy Nason
Dear all, Thanks. I will add it to my list. Sincerely, Guy Nason On 10 Nov 2011, at 04:34, R. Michael Weylandt wrote: It's not a problem with your data or use of the functions -- rather I think there's just a little bug in the package (and I've cc'd the maintainer): draw.wd leads to a

[R] Error in drawing

2011-11-09 Thread Gyanendra Pokharel
I have got following error in drawing wavelet fitting. can some one help? library(faraway) data(lidar) newlidar-lidar[c(1:128),] library(wavethresh) wds - wd(newlidar$logratio) draw(wds) Error in plot.default(x = x, y = zwr, main = main, sub = sub, xlab = xlab, : formal argument type

Re: [R] Error in drawing

2011-11-09 Thread R. Michael Weylandt
Your code is not reproducible. Where is the lidar data coming from? Michael On Wed, Nov 9, 2011 at 2:29 PM, Gyanendra Pokharel gyanendra.pokha...@gmail.com wrote:  I have got following error in drawing wavelet fitting. can some one help? library(faraway) data(lidar)

Re: [R] Error in drawing

2011-11-09 Thread R. Michael Weylandt
It's not a problem with your data or use of the functions -- rather I think there's just a little bug in the package (and I've cc'd the maintainer): draw.wd leads to a call of draw.default(type = l) which in turn leads to plot(type = l). However, since draw.default doesn't have a type argument,