Hi, Is the number of lines that can be displayed in R GUI limited? When I do a Fourier Tranform of 4000 data points, I can only see the last 300 or so of it. I need to see all of it. How is this possible? Thank you if you can help! -- View this message in context: http://www.nabble.com/R-window-lines-limit-tp20735974p20735974.html Sent from the R help mailing list archive at Nabble.com.
On Fri, Nov 28, 2008 at 9:00 AM, Rthoughts <seb.brockel at northampton.ac.uk> wrote:> > Hi, > > Is the number of lines that can be displayed in R GUI limited? > > When I do a Fourier Tranform of 4000 data points, I can only see the last > 300 or so of it. I need to see all of it. How is this possible?Perhaps you could tell us why you want to see all the 4000 data points. It's unlikely that looking at 4,000 numbers is going to give you much insight into your data. Perhaps you are trying to save out the data? Hadley -- http://had.co.nz/
Try ?View On Fri, Nov 28, 2008 at 10:00 AM, Rthoughts <seb.brockel at northampton.ac.uk> wrote:> > Hi, > > Is the number of lines that can be displayed in R GUI limited? > > When I do a Fourier Tranform of 4000 data points, I can only see the last > 300 or so of it. I need to see all of it. How is this possible? > > Thank you if you can help! > > > -- > View this message in context: http://www.nabble.com/R-window-lines-limit-tp20735974p20735974.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
On 28/11/2008 10:00 AM, Rthoughts wrote:> Hi, > > Is the number of lines that can be displayed in R GUI limited?Which GUI? In Windows, the console buffer size is configurable. The defaults are 250,000 characters, 8000 lines; it doesn't sound as though you are hitting those limits. But if you want to change them, go to Edit | Gui preferences. When I look at fft(rnorm(4000)), I see all 4000 values; my limit appears to be around 8000 values, using the default settings. Duncan Murdoch> > When I do a Fourier Tranform of 4000 data points, I can only see the last > 300 or so of it. I need to see all of it. How is this possible? > > Thank you if you can help! > >