[ESS] R window jumps to beginning (browse)

2023-02-17 Thread Christian via ESS-help
hi all, when browsing function, each step makes the R window jump to its start. How can I bring back the 'normal' behaviour of staying in place? -- Christian Hoffmann Rigiblickstrasse 15b CH-8915 Hausen am Albis Switzerland Telefon +41-(0)76-3650853

Re: [ESS] When the R window opens, sometimes it is side-by-side with my .Rnw file. I want them one above the other. It seems unpredictable

2022-05-27 Thread Stephen Eglen via ESS-help
> I'm using Vince Goulet's modified version of emacs 26.2 (build 1, > x86_64-w64-mingw32) of 2019-04-13 with ESS, on Windows 10. I use Sweave > and LaTeX, so I have my R code in .Rnw files. When I execute my first > line of R code, an R buffer opens of course. I prefer it to be below my > Rnw

[ESS] When the R window opens, sometimes it is side-by-side with my .Rnw file. I want them one above the other. It seems unpredictable

2022-05-27 Thread Christopher W. Ryan via ESS-help
I'm using Vince Goulet's modified version of emacs 26.2 (build 1, x86_64-w64-mingw32) of 2019-04-13 with ESS, on Windows 10. I use Sweave and LaTeX, so I have my R code in .Rnw files. When I execute my first line of R code, an R buffer opens of course. I prefer it to be below my Rnw buffer.

Re: [R] [ESS] R window: Text is read only (: Another round :)

2017-12-20 Thread Albrecht Kauffmann
Dear Christian, to leave the read-only state, did you try C-x C-q in the mode line? Cheers, Albrecht -- Albrecht Kauffmann alkau...@fastmail.fm Am Mi, 20. Dez 2017, um 14:26, schrieb Christian: > Dear All > > Working along in R (Emacs {Aquamacs}, ESS ) usually I am getting a long > R

[R] [ESS] R window: Text is read only (: Another round :)

2017-12-20 Thread Christian
Dear All Working along in R (Emacs {Aquamacs}, ESS ) usually I am getting a long R buffer with many rows. To reduce its length, I used to select backwards and delete those unnecessary rows. Now I cannot do that, only C-k allows single lines to be deleted. the mode line says 'Text is

Re: [ESS] R window: Text is read only

2017-09-27 Thread Vitalie Spinu
If you activate the debugger (M-x toggle-debug-on-error), does it show anything meaningful? >> On Wed, Sep 27 2017 09:47, Christian wrote: > Hi, after start with M-x R the R window behaves OK, allowing writing to. BUT, > after navigating in the help system, R refuses writing with &

[ESS] R window: Text is read only

2017-09-27 Thread Christian
Hi, after start with M-x R the R window behaves OK, allowing writing to. BUT, after navigating in the help system, R refuses writing with "Text is read only". This makes R unusable. I found no help on the net, so, please, give me some hints. This behaviour started bothering me out o

Re: [R] Window on a vector

2012-03-12 Thread Alaios
From: David Winsemius dwinsem...@comcast.net Cc: R help R-help@r-project.org Sent: Saturday, March 10, 2012 2:49 PM Subject: Re: [R] Window on a vector On Mar 10, 2012, at 7:44 AM, Alaios wrote: Dear all, I have a large vector (lets call it myVector) and I want to plot its value

Re: [R] Window on a vector

2012-03-12 Thread R. Michael Weylandt
should I deal with that? Regards Alex  From: David Winsemius dwinsem...@comcast.net Cc: R help R-help@r-project.org Sent: Saturday, March 10, 2012 2:49 PM Subject: Re: [R] Window on a vector On Mar 10, 2012, at 7:44 AM, Alaios wrote: Dear all, I have

Re: [R] Window on a vector

2012-03-12 Thread Petr Savicky
On Sat, Mar 10, 2012 at 04:44:00AM -0800, Alaios wrote: Dear all, I have a large vector (lets call it myVector) and I want to plot its value with the logic below yaxis-myVector[1] yaxis-c(xaxis,mean(myvector[2:3]) yaxis-c(xaxis,mean(myvector[4:8]) yaxisc(xaxis,mean(myvector[9:16])

Re: [R] Window on a vector

2012-03-12 Thread Alaios
, March 12, 2012 4:35 PM Subject: Re: [R] Window on a vector It's not always true that going out of bounds in subscripting gives an error (as you seem to assert in your original post) x - 1:3 x[4] # No error and note that mean() has a na.rm argument. Perhaps you should construct a *reproducible

Re: [R] Window on a vector

2012-03-12 Thread R. Michael Weylandt
Sent: Monday, March 12, 2012 4:35 PM Subject: Re: [R] Window on a vector It's not always true that going out of bounds in subscripting gives an error (as you seem to assert in your original post) x - 1:3 x[4] # No error and note that mean() has a na.rm argument. Perhaps you should

[R] Window on a vector

2012-03-10 Thread Alaios
Dear all, I have a large vector (lets call it myVector) and I want to plot its value with the logic below yaxis-myVector[1] yaxis-c(xaxis,mean(myvector[2:3]) yaxis-c(xaxis,mean(myvector[4:8]) yaxisc(xaxis,mean(myvector[9:16]) yaxisc(xaxis,mean(myvector[17:32]) this has to stop when the new

Re: [R] Window on a vector

2012-03-10 Thread David Winsemius
On Mar 10, 2012, at 7:44 AM, Alaios wrote: Dear all, I have a large vector (lets call it myVector) and I want to plot its value with the logic below yaxis-myVector[1] yaxis-c(xaxis,mean(myvector[2:3]) yaxis-c(xaxis,mean(myvector[4:8]) yaxisc(xaxis,mean(myvector[9:16])

Re: [R] window manager interface commands for linux

2011-11-29 Thread Patrick Connolly
On Mon, 28-Nov-2011 at 12:07PM +0100, Ana wrote: | How can i replicate this in Linux: | source(file.choose()) | As the Mac people used to say ungrammatically: Think Different. There are many ways of using Linux that can't be done in Windows and we know nothing of your setup, so it's not

Re: [R] window manager interface commands for linux

2011-11-29 Thread Milan Bouchet-Valat
Le lundi 28 novembre 2011 à 12:07 +0100, Ana a écrit : How can i replicate this in Linux: source(file.choose()) I've tried source(tkgetOpenFile()) but with no luck Try this instead (it works here): source(tclvalue(tkgetOpenFile())) Cheers __

Re: [R] window manager interface commands for linux

2011-11-29 Thread Jim Lemon
Ana wrote: How can i replicate this in Linux: source(file.choose()) Hi Ana, There is probably some way to do this with a shell script, but I am unaware of it. If you have the marvelous Tcl-Tk scripting language on your Linux box, you could write something like this: #!/usr/bin/wish #

[R] window manager interface commands for linux

2011-11-28 Thread Ana
How can i replicate this in Linux: source(file.choose()) I've tried source(tkgetOpenFile()) but with no luck __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] window manager interface commands for linux

2011-11-28 Thread Ken
Have not found a way to do this either, or in any case it has been buggy. It would depend on the file manager you have installed. But, you're using Linux! The path and working directory are supposed to be half the fun. Maybe create an R folder in /home to keep your files and adjust your R

Re: [R] window?

2011-11-09 Thread rkevinburton
of what frequency is and how to use the forecast package with this problem. -Original Message- From: Dennis Murphy [mailto:djmu...@gmail.com] Sent: Tuesday, November 08, 2011 6:20 PM To: Kevin Burton Cc: R. Michael Weylandt; r-help@r-project.org Subject: Re: [R] window? The ets() function

Re: [R] window?

2011-11-09 Thread R. Michael Weylandt
-help@r-project.org Subject: Re: [R] window? The ets() function in the forecast package requires either a numeric vector or a Time-Series object (produced from ts()). The frequency argument in ts() refers to the time duration between observations; e.g., frequency = 7 means that the data

[R] window?

2011-11-08 Thread Kevin Burton
Can someone enlighten me on why the following doesn't work? setwd('C:/Temp/R') d - rep(1:53,2) (s - ts(d, frequency=53, start=c(2000,10))) n - length(s) k - n%/%3 for(i in (n-k):n) { st - c(start(s)[1] + (start(s)[2] + i)%/%frequency(s), (start(s)[2] + i) %% frequency(s))

Re: [R] window?

2011-11-08 Thread Uwe Ligges
On 08.11.2011 16:26, Kevin Burton wrote: Can someone enlighten me on why the following doesn't work? setwd('C:/Temp/R') d- rep(1:53,2) (s- ts(d, frequency=53, start=c(2000,10))) n- length(s) k- n%/%3 for(i in (n-k):n) { st- c(start(s)[1] + (start(s)[2] + i)%/%frequency(s),

[R] window?

2011-11-08 Thread Kevin Burton
This doesn't seem to work: d - rnorm(2*53) ds - ts(d, frequency=53, start=c(2000,10)) dswin - window(ds, start=c(2001,1), end=c(2001,10), frequency=1) dswin Time Series: Start = 2001 End = 2001 Frequency = 1 [1] 1.779409 dswin - window(ds, start=c(2001,1), end=c(2001,10))

Re: [R] window?

2011-11-08 Thread R. Michael Weylandt
I'm not entirely sure that your request makes sense: what do you expect the frequency to be? It makes sense to me as is...Might your troubles be because 53 is prime? More generally, most people don't like working with the raw ts class and prefer the zoo or xts packages because they are much more

Re: [R] window?

2011-11-08 Thread Kevin Burton
, November 08, 2011 2:28 PM To: Kevin Burton Cc: r-help@r-project.org Subject: Re: [R] window? I'm not entirely sure that your request makes sense: what do you expect the frequency to be? It makes sense to me as is...Might your troubles be because 53 is prime? More generally, most people don't like

Re: [R] window?

2011-11-08 Thread Dennis Murphy
- From: R. Michael Weylandt [mailto:michael.weyla...@gmail.com] Sent: Tuesday, November 08, 2011 2:28 PM To: Kevin Burton Cc: r-help@r-project.org Subject: Re: [R] window? I'm not entirely sure that your request makes sense: what do you expect the frequency to be? It makes sense to me

Re: [R] window?

2011-11-08 Thread Kevin Burton
] Sent: Tuesday, November 08, 2011 6:20 PM To: Kevin Burton Cc: R. Michael Weylandt; r-help@r-project.org Subject: Re: [R] window? The ets() function in the forecast package requires either a numeric vector or a Time-Series object (produced from ts()). The frequency argument in ts() refers

Re: [R] window?

2011-11-08 Thread R. Michael Weylandt
[mailto:djmu...@gmail.com] Sent: Tuesday, November 08, 2011 6:20 PM To: Kevin Burton Cc: R. Michael Weylandt; r-help@r-project.org Subject: Re: [R] window? The ets() function in the forecast package requires either a numeric vector or a Time-Series object (produced from ts()). The frequency

[R] strange error message from freedesktop.org in the R window!

2010-06-15 Thread Kjetil Halvorsen
Almost continuously I get some variant of the following message fillingb up my R console: bubble(data1, logvol) ?variogram ** (evince:2799): WARNING **: DBus error org.freedesktop.DBus.Error.Failed: Unable to set metadata key ** (evince:2799): WARNING **: DBus error

[R] Programmatically minimising main R window (on windows)

2008-12-16 Thread hadley wickham
Hi all, Is it possible to programmatically minimise the main window of the windows R gui? I'm designing a small gui with gwidgets RGtk2 for an non-statistician to use, and it would be nice if I could easily hide all the R stuff that they don't need. Thanks, Hadley -- http://had.co.nz/

Re: [R] Programmatically minimising main R window (on windows)

2008-12-16 Thread Prof Brian Ripley
On Tue, 16 Dec 2008, hadley wickham wrote: Hi all, Is it possible to programmatically minimise the main window of the windows R gui? I'm designing a small gui with gwidgets RGtk2 for an non-statistician to use, and it would be nice if I could easily hide all the R stuff that they don't need.

Re: [R] Programmatically minimising main R window (on windows)

2008-12-16 Thread hadley wickham
On Tue, Dec 16, 2008 at 5:40 PM, Prof Brian Ripley rip...@stats.ox.ac.uk wrote: On Tue, 16 Dec 2008, hadley wickham wrote: Hi all, Is it possible to programmatically minimise the main window of the windows R gui? I'm designing a small gui with gwidgets RGtk2 for an non-statistician to

Re: [R] Programmatically minimising main R window (on windows)

2008-12-16 Thread Berwin A Turlach
G'day Hadley, On Tue, 16 Dec 2008 18:54:48 -0600 hadley wickham h.wick...@gmail.com wrote: On Tue, Dec 16, 2008 at 5:40 PM, Prof Brian Ripley rip...@stats.ox.ac.uk wrote: On Tue, 16 Dec 2008, hadley wickham wrote: [...] Is it possible to programmatically minimise the main window of the

[R] R window lines limit

2008-11-28 Thread Rthoughts
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

Re: [R] R window lines limit

2008-11-28 Thread hadley wickham
On Fri, Nov 28, 2008 at 9:00 AM, Rthoughts [EMAIL PROTECTED] 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

Re: [R] R window lines limit

2008-11-28 Thread Gabor Grothendieck
? 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@r-project.org mailing list https://stat.ethz.ch

Re: [R] R window lines limit

2008-11-28 Thread Duncan Murdoch
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

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-10 Thread Jim Lemon
Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin, etc someday we will have fmm, dmm, pmm? Why worry about that, Alberto, when you can

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-10 Thread hadley wickham
On 10/10/07, Jim Lemon [EMAIL PROTECTED] wrote: Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin, etc someday we will have fmm,

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-10 Thread Alberto Monteiro
Hadley Wickham wrote: Is there any hope that, instead of fin, din, pin, etc someday we will have fmm, dmm, pmm? Why worry about that, Alberto, when you can use my ammazing function: mm2in(x) return(x/25.4) thus: par(pin=mm2in(126)) But be sure to use it consistently!

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Prof Brian Ripley
On Tue, 9 Oct 2007, Samuel Kemp wrote: Hi, In the getGraphicsEvent function the (x,y) co-ordinates returned from the mouse move are in relation to where the mouse is located within the device window (i.e. the lower left corner of the window is '(0,0)', the upper right is '(1,1)'). You do

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Alberto Monteiro
Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin, etc someday we will have fmm, dmm, pmm? Alberto Monteiro __

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Duncan Murdoch
On 10/9/2007 8:16 AM, Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin, etc someday we will have fmm, dmm, pmm? I don't think so (why

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Ken Knoblauch
Duncan Murdoch murdoch at stats.uwo.ca writes: On 10/9/2007 8:16 AM, Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin, etc

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread hadley wickham
On 10/9/07, Prof Brian Ripley [EMAIL PROTECTED] wrote: On Tue, 9 Oct 2007, Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any hope that, instead of fin, din, pin,

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Prof Brian Ripley
On Tue, 9 Oct 2007, hadley wickham wrote: On 10/9/07, Prof Brian Ripley [EMAIL PROTECTED] wrote: On Tue, 9 Oct 2007, Alberto Monteiro wrote: Prof Brian Ripley wrote: Read ?par and the descriptiuon in 'An Introduction to R'. din, fin, mai, omi, pin and usr are relevant. Is there any

Re: [R] window (x,y) co-ordinates of datapoints

2007-10-09 Thread Greg Snow
PROTECTED] On Behalf Of Samuel Kemp Sent: Tuesday, October 09, 2007 4:59 AM To: [EMAIL PROTECTED] Subject: [R] window (x,y) co-ordinates of datapoints Hi, In the getGraphicsEvent function the (x,y) co-ordinates returned from the mouse move are in relation to where the mouse is located within