[R] problem installing RdbiPgSQL for 2.4

2006-10-03 Thread Oleg Bartunov
_ Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru), Sternberg Astronomical Institute, Moscow University, Russia Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/ phone: +007(495)939-16-83, +007(495)939-23-83 __ R-help

[R] data frame excerption

2005-03-12 Thread Oleg Bartunov
Hello, is't possible to get excerptions of data frame using some contstraints, something like q1 = q[q$V31] ? Regards, Oleg _ Oleg Bartunov, sci.researcher, hostmaster of AstroNet, Sternberg Astronomical Institute

Re: [R] multiple plots problem

2004-04-01 Thread Oleg Bartunov
Philipp Regards, Oleg _ Oleg Bartunov, sci.researcher, hostmaster of AstroNet, Sternberg Astronomical Institute, Moscow University (Russia) Internet: [EMAIL PROTECTED], http://www.sai.msu.su/~megera/ phone: +007

Re: [R] multiple plots problem

2004-04-01 Thread Oleg Bartunov
On Thu, 1 Apr 2004, Duncan Murdoch wrote: On Thu, 1 Apr 2004 15:38:54 +0400 (MSD), Oleg Bartunov [EMAIL PROTECTED] wrote : Hello, for testing learning purposes I create X11 device and specify layout like layout(c(1,2,3), 3, 1), so I could play with parameters and see several plots

Re: [R] multiple plots problem

2004-04-01 Thread Oleg Bartunov
instead of layout. Example: par(bg = white) # default is likely to be transparent split.screen(c(3,1))# split display into three screens screen(1) plot(1:10) screen(2) plot(2:20) screen(3) plot(3:30) screen(1) erase.screen() plot(sin(40:400)) Angel Oleg Bartunov wrote

Re: [R] multiple plots problem

2004-04-01 Thread Oleg Bartunov
) return(i) } plot(1:10) i-nextplot(i) plot(2:20) i-nextplot(i) plot(3:30) i-nextplot(i) plot(sin(40:400)) i-nextplot(i) plot(sin(4:40)) ## Continue your plots close.screen(all = TRUE) Oleg Bartunov wrote: interesting, it works, but still need to explicitly specify screen number

[R] using hist breaks as factor ?

2004-03-29 Thread Oleg Bartunov
. Regards, Oleg _ Oleg Bartunov, sci.researcher, hostmaster of AstroNet, Sternberg Astronomical Institute, Moscow University (Russia) Internet: [EMAIL PROTECTED], http://www.sai.msu.su/~megera/ phone: +007(095)939-16-83, +007(095

Re: [R] using hist breaks as factor ?

2004-03-29 Thread Oleg Bartunov
On Mon, 29 Mar 2004, Gabor Grothendieck wrote: Oleg Bartunov oleg at sai.msu.su writes: I have numeric vector z and I want to factorize it using z$breaks Have a look at: ?cut Thanks for pointers, this is what I needed. __ [EMAIL PROTECTED

Re: [R] cut and factor

2004-03-29 Thread Oleg Bartunov
PROTECTED] From: Oleg Bartunov [EMAIL PROTECTED] I have numeric vector z and I want to factorize it using z$breaks which I got from histograms breaks. Is there an elegant way to do this ? I, probably, could write a loop and check if z hits into some interval and replace z with value of z$mids

Re: [R] cut and factor

2004-03-29 Thread Oleg Bartunov
On Mon, 29 Mar 2004, Achim Zeileis wrote: On Tue, 30 Mar 2004 00:06:39 +0400 (MSD) Oleg Bartunov wrote: Eric, thanks for quick reply. at first look I thought it is what I need, but, unfortunately, it doesn't applied to original data - it creates new data with loosing original indexes

[R] downloadable mailing list archive in mbox format

2004-03-25 Thread Oleg Bartunov
Hi there, I'm beginner and would like to have mailing list archive to read it offline and don't disturb mailing list. I'd prefer mbox format. Regards, Oleg _ Oleg Bartunov, sci.researcher, hostmaster of AstroNet

Re: [R] downloadable mailing list archive in mbox format

2004-03-25 Thread Oleg Bartunov
On Thu, 25 Mar 2004, Roger D. Peng wrote: You can get archives of the list at the URL listed at the bottom of this email. Thanks ! -roger Oleg Bartunov wrote: Hi there, I'm beginner and would like to have mailing list archive to read it offline and don't disturb mailing list

[R] factor based on pattern match ?

2004-03-25 Thread Oleg Bartunov
, F and M, where F means everything beginning from 'f' and M - from 'm'. Something like cut() for numerical data. Regards, Oleg _ Oleg Bartunov, sci.researcher, hostmaster of AstroNet, Sternberg Astronomical

RE: [R] factor based on pattern match ?

2004-03-25 Thread Oleg Bartunov
,fm,mf,ffm,mmf,mmm,fff)) levels(y) - substring(levels(y), 1, 1) y [1] f f m m f m f m m f Levels: f m Andy From: Oleg Bartunov Hello, is't possible to specify pattern in levels ? y=c(ff,f,m,mm,fm,mf,ffm,mmf,mmm,fff); factor(y) [1] ff f m mm fm mf ffm mmf mmm