[R] data formatting: from rows to columns

2007-08-28 Thread Duncan Mackay
(sprintf(%d\n%d\n\n, x$V2, x$V3), sep='', file='tempxx.txt') How about write.table(x,clipboard,sep=\n,eol=\n\n,col.names = FALSE, row.names = FALSE) 2032567 19 2035482 19 2472826 19 2473320 19 2035480 135 2062458 135 2074927 135 2102395 142 2027252 142 2473082 142 Regards Duncan Mackay

Re: [R] background color in strip.custom()

2006-12-04 Thread Duncan Mackay
One way is to use the argument par.settings get the right name names(trellis.par.get()) or str(trellis.par.get()) to find the list names to change then xyplot(y ~ x | f, par.settings = list(strip.background = list(col = c(your colours)) ) Regards Duncan Duncan Mackay

Re: [R] R2.4 xyplot + panel.number problem

2006-11-28 Thread Duncan Mackay
the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. Regards Duncan Duncan Mackay Department of Agronomy and Soil Science University of New England ARMIDALE NSW 2351 Email: [EMAIL PROTECTED] home: [EMAIL PROTECTED] Phone: 02

Re: [R] RGui: windows-record and command history

2006-03-23 Thread Duncan Mackay
* Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d/index.html [[alternative HTML version deleted

[R] Justification of dendrogram labels

2006-01-26 Thread Duncan Mackay
justification. Thanks, Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d/index.html

[R] [Rd] bug in windows GUI/script editor (PR#8288)

2005-11-09 Thread Duncan Mackay
language R * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d/index.html

[R] [Rd] bug in windows GUI/script editor (PR#8288)

2005-11-09 Thread Duncan Mackay
month10 day 06 svn rev 35749 language R * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http

Re: [R] Stacked Area chart

2005-08-16 Thread Duncan Mackay
]), default.units = native) } # for (j in 1:length(grp.no)) } # panel ) Regards Duncan Mackay (The other Duncan Mackay) Duncan Mackay Dept of Agronomy and Soil Science University of New England ARMIDALE NSW 2351 Email: [EMAIL PROTECTED

[R] RGUI crash when opening script in XP Home enviroment

2005-08-09 Thread Duncan Mackay
* Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d/index.html [[alternative HTML version deleted

[R] Digest reading is tedious

2005-08-09 Thread Duncan Mackay
Any prospects of getting R-news delivered as an RSS feed??? Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http

[R] RGUI crash when opening script in XP Home enviroment

2005-08-09 Thread Duncan Mackay
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

[R] Digest reading is tedious

2005-08-09 Thread Duncan Mackay
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

[R] RGUI crash when opening script in XP Home enviroment

2005-08-09 Thread Duncan Mackay
* Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d/index.html __ R-help

[R] Digest reading is tedious

2005-08-09 Thread Duncan Mackay
Any prospects of getting R-news delivered as an RSS feed??? Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http

[R] Rconsole wishlist

2005-03-03 Thread Duncan Mackay
and function output). And on a similar vein, wouldn't it also be nice if R automatically entered a date stamp into the history file?? Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA

RE: [R] Rconsole wishlist

2005-03-03 Thread Duncan Mackay
11:14 AM To: 'Duncan Mackay'; R-news Subject: RE: [R] Rconsole wishlist I'm guessing you're talking about Rgui on Windows, but please don't leave us guessing. If you run R under Ess/(X)Emacs, you have the entire session that can be saved in a (transcript) file. Does your OS not put date stamps

[R] package dependency error on loading lme4

2005-01-24 Thread duncan . mackay
[1] i386 $os [1] mingw32 $system [1] i386, mingw32 $status [1] $major [1] 2 $minor [1] 0.1 $year [1] 2004 $month [1] 11 $day [1] 15 $language [1] R Cheers, Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100

[R] RGUI Console settings

2004-08-03 Thread Duncan Mackay
changed the buffer bytes setting to 13 and now the console will display what I want. But clearly I don't really understand what is going on here Thanks, Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100

RE: [R] Generate a sequence of random integer values

2004-05-27 Thread Duncan Mackay
Hello, Have a look at the sample command. E.g. sample(20) [1] 3 2 18 6 10 5 9 20 19 13 8 15 17 7 4 14 11 1 12 16 Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08

[R] se.contrast ....too hard??? .... Too easy????? .....too trivial???? ...... Too boring.....too????????

2004-02-29 Thread Duncan Mackay
] 192 Browse[1] NROW(y)==n [1] TRUE Browse[1] Q So, if NROW(y)==n, why do I get the message qr and y must have the same number of rows Any help gratefully appreciated Duncan ** R, me bucko * Dr. Duncan Mackay

[R] se.contrast ???????????

2004-02-25 Thread Duncan Mackay
number of rows ? Thanks, Duncan ** R, me bucko * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08

RE: [R] plot mean + S.E. over time

2003-11-25 Thread Duncan Mackay
check out plotCI and plotmeans in the gregmisc library. Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au

RE: [R] Calculating great circle distances

2003-11-25 Thread Duncan Mackay
Have you seen Online calculations Downloadable spreadsheets to perform Geodetic Calculations. at http://www.ga.gov.au/nmd/geodesy/datums/calcs.jsp ? Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A

RE: [R] kruskal wallis for manova?

2003-11-24 Thread Duncan Mackay
Hi, you may also be interested in Marti Anderson's NPMANOVA program, described at http://www.stat.auckland.ac.nz/~mja/Programs.htm Cheers, Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001

[R] Hidden Rhistory files

2003-11-19 Thread Duncan Mackay
Rhistory file, the problem goes away. But why did the files get that attribute in the first place? Is this something that R itself may have done? I'm running R Version 1.8.0 (2003-10-08) under WinXP. Cheers, Duncan * Dr. Duncan Mackay School of Biological

RE: [R] covariate data errors

2003-06-12 Thread Duncan Mackay
an accompanying package car on the CRAN R site. Duncan * Dr. Duncan Mackay School of Biological Sciences Flinders University GPO Box 2100 Adelaide S.A.5001 AUSTRALIA Ph (08) 8201 2627FAX (08) 8201 3015 http://www.scieng.flinders.edu.au/biology/people/mackay_d

FW: [R] update.packages through proxy failing

2003-01-07 Thread Duncan Mackay
PROTECTED]] Sent: Wednesday, 8 January 2003 12:29 PM To: Duncan Mackay Subject: Re: [R] update.packages through proxy failing Duncan, My organisation also uses a proxy/firewall. I specify --internet2 on the Target line of my R shortcut. This then uses the proxy configuration within your web browser