Re: [Rd] R.app editor (PR#7928)

2005-06-10 Thread ripley
ssion from: (NULL) (143.50.77.182) > > device pdf() produces empty files > > and device postscript() produces incompleete graphs -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +

Re: [Rd] wrong environment in anova call inside function (PR#7937)

2005-06-14 Thread ripley
stricted > fit3 <- gls(y ~ dose, > weights=varIdent(form=~1|dose), > data=df) > > # more restricted > fit4 <- gls(y ~ dose, > data=df) > > ## This works: > anova(fit3, fit4) > > ## The results: > ## > anova(fit3, fit4) >

Re: [Rd] source() chdir does not work (PR#7940)

2005-06-15 Thread ripley
d > it): > > source<- function (blablabla) { > +filename <- file > ...blablabla > -if (chdir && is.character (file) && ... dirname(file) ...) { > +if (chdir && is.character (filename) && ... dirname(filename) ...) { > +close(file) # s

Re: [Rd] (PR#7942) extra spaces before imag part when printing

2005-06-15 Thread ripley
+1i, 1+12i)) > [1] 1+ 1i 1+12i > ^ > >> print(c(1+1i, 1+123i)) > [1] 1+ 1i 1+123i > ^^ > >> print(c(1+1i, 1+1234i)) > [1] 1+ 1i 1+1234i > ^^^ -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.o

Re: [Rd] italic (PR#7932)

2005-06-15 Thread ripley
> has the effect of italicizing 33 (which is a character string) but not 22 >> (which is not). I would have thought that both, not just 33, would be >> italicized. (We do ask people to actually do the thinking before posting a bug report.) -- Brian D. Ripley, [EMAIL

Re: [Rd] (PR#7943) documentation enhancement: Note in ?seek for

2005-06-15 Thread ripley
ted by this issue. Clipboard connections can seek too. > #endif > > Of course, if someone knows that the return value of seek() is > unreliable on Windows for binary files, this documentation change is > innappropriate (and then the documentation should probably be changed > from &q

Re: [Rd] (PR#7943) documentation enhancement: Note in ?seek for

2005-06-15 Thread ripley
Actually, there is a known issue: it is often wrong for binary files opened in append mode, and we have caught by that too. So those writers did make the sort of error I did not trust them not to make. On Wed, 15 Jun 2005, Prof Brian Ripley wrote: > I think the proposed change is appropri

Re: [Rd] (PR#7951) DispatchOrEval missing in do_isfinite and

2005-06-16 Thread ripley
; int i, n; > >if (DispatchOrEval(call, op, "is.infinite", args, rho, &ans, 1, 1)) >return(ans); > >checkArity(op, args); >... -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac

Re: [Rd] Capitalize the title in DESCRIPTION files? (PR#7969)

2005-06-24 Thread ripley
do' applies, I think. Thank you, we'll try to set a better example. (As you may guess, the example and advice are from different hands and the example predates the advice.) -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.a

Re: [Rd] Cannot choose language for installing (PR#7971)

2005-06-27 Thread ripley
R.2.1.1 into my windows xp system. The system is > Japanese version. But I set the unicode fonts to be Chinese to for some > important programme. No matter how I choose the language during the > installation, I always get an R of Japanese version. -- Brian D. Ripley,

Re: [Rd] symbol.For problem? (PR#7974)

2005-06-27 Thread ripley
> minor = 1.0 > year = 2005 > month = 04 > day = 18 > language = R > > Search Path: > .GlobalEnv, package:foo, package:methods, package:stats, package:graphics, > package:grDevices, package:utils, package:datasets, Autoloads, package:base > > ___

Re: [Rd] Failed make (PR#7978)

2005-06-29 Thread ripley
Installation and > Administration". That is a known problem with vanilla gcc-4.0.0 but not with the version in FC4. I do wonder why anyone would replace a patched compiler with an known buggy one. At least use the latest release candidate of 4.0.1 if you insist on using gcc4. --

Re: [Rd] Bartlett test problem (PR#7980)

2005-06-30 Thread ripley
omething here we can reproduce. It might well only happen with your dataset. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks R

Re: [Rd] Sys.timzone() returns NA - problem caused by as.POSIXlt? (PR#8003)

2005-07-10 Thread ripley
t; [1] NA > >> Sys.timezone > function () > { >z <- as.POSIXlt(Sys.time()) >attr(z, "tzone")[2 + z$isdst] > } > > >> z <- as.POSIXlt(Sys.time()) >> attributes(z) > $names > [1] "sec" "min" "hour" &

Re: [Rd] Sweave resource leak: leftover temp files (PR#7998)

2005-07-12 Thread ripley
ot;Rf23417" "Rf2403" "Rf27095" "Rf2892" > [15] "Rf29444" "Rf31128" "Rf31415" "Rf32520" "Rf3338" "Rf5290" "Rf5551" > [22] "Rf6251" "Rf6482" "Rf70

Re: [Rd] Sweave resource leak: leftover temp files (PR#7998)

2005-07-12 Thread ripley
On Tue, 12 Jul 2005, Duncan Murdoch wrote: > Prof Brian Ripley wrote: >> This is actually a Windows bug. Those files are unlink()ed, and it seems >> Windows is not respecting that (not an unknown phenomenon). I have tried a >> few workarounds, and am about to commit o

Re: [Rd] as.data.frame.table responseName argument (PR#8006)

2005-07-13 Thread ripley
= NULL, optional = FALSE) > NULL > which would (I think) explain the error, > > Heather > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley, [EMAIL P

Re: [Rd] translation with Rd.sty, Sweave and tex4th (PR#8016)

2005-07-19 Thread ripley
;s extra care in finding conflicting definitions. > Another possibility, as suggested by Kurt, would be "emulate" namespaces > with something of the type [EMAIL PROTECTED] Really a general-purpose package like tex4th should be doing that, not R. As many R installations have lot

Re: [Rd] (PR#8017) build of REventLoop package crashes with 2.1 due

2005-07-20 Thread ripley
t; < #define STRCOLL strcmp > < #endif > < > < #endif > < > < /* Localization */ > < > < #ifdef ENABLE_NLS > < #include > < #ifdef Win32 > < #define _(String) libintl_gettext (String) > < #undef gettext /* needed for graphapp */ > < #else > < #define _(S

Re: [Rd] (PR#8017) build of REventLoop package crashes with 2.1 due

2005-07-20 Thread ripley
r_t *wc, size_t n); >> < #endif >> < >> < /* used in relop.c and sort.c */ >> < #if defined(Win32) && defined(SUPPORT_UTF8) >> < #define STRCOLL Rstrcoll >> < #else >> < >> < #ifdef HAVE_STRCOLL >> < #define STRC

Re: [Rd] error in text.default (PR#8034)

2005-07-25 Thread ripley
atch) and with downloaded and compiled source code from CRAN (with and > without > latest patch). > > Is problem with R or fonts on my PC? Windows 2000 version of R on another > machine works OK -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics

Re: [Rd] (PR#8049) add1.lm and add1.glm not handling weights and

2005-08-05 Thread ripley
anyone else's work. I > don't see this fixed in the bug-fix list at > https://svn.r-project.org/R/trunk/NEWS > but I haven't checked whether the same problems are in the current > r-devel. > > David > > ______ > R-devel@r-pr

Re: [Rd] unable to start pdf, postscript devices (PR#8052)

2005-08-05 Thread ripley
d no new > software installation has occurred on the computer running R, which is an > Apple > Dual 2 GHz Power PC G5. > > Thank you for your attention to this matter. > > __ > R-devel@r-project.org mailing list

Re: [Rd] make check-all fails (PR#8063)

2005-08-14 Thread ripley
directory: . > Installation directory:/usr/local > > C compiler:gcc -g -O2 > C++ compiler: g++ -g -O2 > Fortran compiler: f95 -g -O2 > > Interfaces supported: X11 > External libraries:readline > Additional

Re: [Rd] Shutdown by to much data (PR#8065)

2005-08-15 Thread ripley
from: (NULL) (212.62.93.226) > > > I loaded a huge database (textfile, semikolon seperated) by read.csv2. The > data > already appeared in the list (by ls()). When I want to view the data in the > editor, R completly crashes. Which means what, exactly? Again, see the posti

Re: [Rd] png and resolution (PR#8066)

2005-08-15 Thread ripley
size = > 48, bg = "white", res = 2400) > > witdh/heigth = 1920 <> 20.32 mm > ppi=150 > Result not as expected. > > ______ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel >

Re: [Rd] quirky behavior from rbinom (PR#8071)

2005-08-16 Thread ripley
]> rbinom(1,3,1) > [1] 3 > Browse[1]> rbinom(1,yleft[dataIndex], theP) > [1] NaN > > Strange, huh? > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley,

Re: [Rd] PS driver crashes when no permissions (PR#8078)

2005-08-19 Thread ripley
gt; R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1

Re: [Rd] Example in pdf() help file (PR#8083)

2005-08-22 Thread ripley
-- --dict:79/200(L)-- > --dict:105/127(ro)(G)-- --dict:251/347(ro)(G)-- --dict:21/24(L)-- > --dict:4/6(L)-- --dict:20/20(L)-- --dict:10/13(L)-- > Current allocation mode is local > pdf_page failed > > __ > R-devel@r-project.org ma

Re: [Rd] (PR#8087) NAs by integer overflow in Spearman's test p-value

2005-08-23 Thread ripley
s a minimally invasive > fix -- alternatively, replacing at line 17 > >n <- length(x) > > with > >n <- as.double(length(x)) > > achieves the same fix and may take care of other unnecessary integer > overflows, > but it may also introduce

Re: [Rd] Typo(s) in proc.time.Rd and comment about ?proc.time (PR#8092)

2005-08-24 Thread ripley
5, containing the user, system, and > total elapsed times [in seconds] for the currently running R > process [...] > > Thank you, > > Stephen > > :: > Stephen Weigand > Division of Biostatistics > Mayo Clinic Rochester > Phone (507) 266-16

Re: [Rd] xerbla called from BLAS routine (PR#8100)

2005-08-29 Thread ripley
Ripley wrote: > I don't believe your message actually came from R's XERBLA. Note that th= e=20 > name is not quoted and that the name of the routine is not 6 characters l= ong. > > Here is a genuine example from R: > > Error in La.svd(x, nu, nv) : LAPACK routine 'DGEB

Re: [Rd] xerbla called from BLAS routine (PR#8100)

2005-08-29 Thread ripley
char buf[7]; >strncpy(buf, srname, 6); >buf[6] =3D '\0'; >error(_("LAPACK routine '%6s' gave error code %d"), buf, -(*info)); > } > > change 'LAPACK' to 'The' (or 'The BLAS/LAPACK'). > &

Re: [Rd] "finite" vs "R_FINITE" in colors.c (PR#8108)

2005-08-29 Thread ripley
as non-admin on a bare-bones > ia64 hpux system with no web browser, and a weird mix of libraries. > Nevertheless, the above seems to me like an innocent typo? -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ Universi

Re: [Rd] Ad: Re: R crashes for large formulas in lm() (PR#8180)

2005-10-05 Thread ripley
+ x3:x8 + x4:x5 + x4:x6 + x4:x7 + x4:x8 + x5:x6 + x5:x7 + x5:x8 + x6:x7 + x6:x8 + x7:x8 + x1:x2:x3 + x1:x2:x4 + x1:x3:x4 + x1:x2:x5 + x1:x3:x5 + ... x1:x3:x4:x5:x6:x7:x8 + x2:x3:x4:x5:x6:x7:x8 + x1:x2:x3:x4:x5:x6:x7:x8 Did you actually want lm(y~(x1+x2+x3+x4+x5+x6+x7+x8)^2)

Re: [Rd] Ad: Re: Ad: Re: R crashes for large formulas in lm() (PR#8181)

2005-10-05 Thread ripley
the calculation is done can be improved, but is anyone going intentionally to write a 100,000 term formula? > > Prof Brian Ripley <[EMAIL PROTECTED]> > 05.10.2005 12:50 > >Til:[EMAIL PROTECTED] >cc: Uwe Ligges <[EMAIL PROTECTED]>, > [EMAI

Re: [Rd] Help page links to index.html are dead (PR#8196)

2005-10-09 Thread ripley
ackages.html. >> This link is dead. I suspect the link should be: >> >> file:///C:/R/R220/doc/html/rwin.html >> >> P.S. It should be obvious, but just in case, I have R installed at >> c:/R/R220 >> >> ______

Re: [Rd] GUI error. (PR#8204)

2005-10-13 Thread ripley
window demo window >> is >> active. >> the error can be reproduce easly. > > Not reproducible for me in 2.2.0. Things worked just as I'd expect. > > Duncan Murdoch > > __ > R-devel@r-project.org mailin

Re: [Rd] Make problem (PR#8210)

2005-10-17 Thread ripley
rc > *** Error code 1 > make: Fatal error: Command failed for target `R' > > Jun H. Zhang > Biostatistics and Applied Mathematics > MD Anderson Cancer Center > 713-792-2606 > [[alternative HTML version deleted]] > > ____

Re: [Rd] formatC using a "single" as argument (PR#8211)

2005-10-17 Thread ripley
RUE > > This seems to be an unlikely use-case, however. > > Thank you for creating a great programming language, > Jochen > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel >

Re: [Rd] can't start csh (scripts) (PR#8220)

2005-10-19 Thread ripley
em = sparc, solaris2.9 > status = > major = 2 > minor = 2.0 > year = 2005 > month = 10 > day = 06 > svn rev = 35749 > language = R > > Locale: > C > > Search Path: > .GlobalEnv, package:methods, package:stats, package:graphics, > package:grDevic

Re: [Rd] Windows 2000 crash while using rbind (PR#8225)

2005-10-20 Thread ripley
,"Armadale (C)",..: 1 2 3 4 5 = > 6 7 8 9 10 ... > $ count: num 1107 2163 532 294 479 ... > $ year : Factor w/ 5 levels "1991","1996",..: 1 1 1 1 1 1 1 1 1 1 ... >> gc() > used (Mb) gc trigger (Mb) max used (Mb) > Ncells 3255820 87.0

Re: [Rd] read.table error upon package installation (PR#8230)

2005-10-20 Thread ripley
> is more than one space between tab delimiters. Looks more like a user misunderstanding of ?data. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 So

Re: [Rd] read.fwf doesn't work with header = TRUE (PR#8226)

2005-10-21 Thread ripley
space-delimited (or at least that spaces get converted to tabs). We have not specified the format of the header line, and it cannot usefully be fixed format. So I think we need to specify it is delimited by 'sep' (not tab). -- Brian D. Ripley, [EMAIL PROTECTED] Profess

Re: [Rd] read.fwf(...,header=TRUE,...) (PR#8236)

2005-10-21 Thread ripley
343 1.7 > > On the other side, if I use the option header=FALSE, no difference occurs > between the two versions: > >> data<-read.fwf(file = "example.dat",widths=c(3,4,4)) >> data > V1 V2 V3 > 1 aaa bbb ccc > 2 3.4 1.2 5.6 > 3 4.6

Re: [Rd] new.packages --- wishlist (PR#8239)

2005-10-22 Thread ripley
On Sat, 22 Oct 2005 [EMAIL PROTECTED] wrote: > new.packages() misses a destdir argument as in > update.packages() and > install.packages(). > > > Adding this new argument is very little work, so please do it! Done in R-devel. -- Brian D. Ripley, [EMAIL PROTE

Re: [Rd] read.fwf doesn't work with header = TRUE (PR#8226)

2005-10-23 Thread ripley
On Fri, 21 Oct 2005, Emmanuel Paradis wrote: > Prof Brian Ripley wrote: >> On Thu, 20 Oct 2005 [EMAIL PROTECTED] wrote: >> >>> Full_Name: Emmanuel Paradis >>> Version: 2.1.1 >>> OS: Linux >>> Submission from: (NULL) (193.49.41.105) >&

Re: [Rd] Yates' correction for continuity in chisq.test (PR#8265)

2005-10-31 Thread ripley
adjusted statistic has a more accurate chisq distribution under the null. I think at this remove it does not matter what Yates' suggested (although if I were writing a textbook I would find out), especially as the R documentation does not mention Yates. -- Brian D. Ripley,

Re: [Rd] Im() of negative non-complex numbers is pi (PR#8272)

2005-11-01 Thread ripley
year 2005 >> month10 >> day 06 >> svn rev 35749 >> language R >> >> Debian (stable) linux >> >> __ >> R-devel@r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel >> > >

Re: [Rd] shared-mime-info (PR#8278)

2005-11-03 Thread ripley
? As I understand it would > only concern Linux installations and R should cooperate with shared-mime-info > package which is responsible for all mime type definitions. > > Vaidotas Zemlys NB: signature missing -- Brian D. Ripley, [EMAIL PROTECTED] Pro

Re: [Rd] small bug in gl1ce, package lasso2 (PR#8280)

2005-11-03 Thread ripley
var))) + > > (is.null(sweep.out)) * sqrt(apply(X.to.C.w,2,var))) > > That should work. > > ______ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. R

Re: [Rd] Bug in the example of function optim() (PR#8312)

2005-11-15 Thread ripley
4 > D-80539 M=FCnchen > Tel: +49 89 2180 4847 > Fax: +49 89 2180 5308 > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > --=20 Brian D. Ripley, [EMAIL PROTECTED] Profes

Re: [Rd] Malformed package name (PR#8314)

2005-11-16 Thread ripley
letter. ... > > Hence it's clear that the character "-" is not allowed in a > package name. > > So why do you think this is a bug ? Because that form 'Translation-ll' is recommended in the R-exts manual for translation packages. W

Re: [Rd] Principal Components Analysis (PR#8320)

2005-11-16 Thread ripley
9460 > [6,] 0.032231827 5.646388e-01 0.1541661011 0.7049350072 > [7,] -0.058318858 -4.748060e-01 -0.1070487286 -0.0849487969 > [8,] 0.014813290 3.516922e-01 -0.9260185177 -0.1182046449 > [9,] 0.994055719 -9.937481e-02 -0.0249932592 0.0324567705 > > ___

Re: [Rd] PR#8282

2005-11-17 Thread ripley
> R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (s

Re: [Rd] (PR#8337) formatC adds leading space -- on some Windoze

2005-11-22 Thread ripley
42e-05" > [2,] "0.0003142" > [3,] "0.003142 " > [4,] "0.03142 " > [5,] "0.3142 " > [6,] "3.142" > [7,] "31.42" > [8,] "314.2" > [9,] "3142 " > [10,] "3.142e+04&

Re: [Rd] make check fails for R 2.3.0 (PR#8343)

2005-11-22 Thread ripley
sapply(3:9, seq) # list of vectors >> sapply(i39, fivenum) > [,1] [,2] [,3] [,4] [,5] [,6] [,7] > [1,] 1.0 1.01 1.0 1.0 1.01 > [2,] 1.5 1.52 2.0 2.5 2.53 > [3,] 2.0 2.53 3.5 4.0 4.55 > [4,] 2.5 3.54 5.0 5.5 6.57 > [5,]

Re: [Rd] [PATCH] Add fpicflags for Intel(R) Fortran Compiler (PR#8344)

2005-11-22 Thread ripley
. Individual platform overrides. > case "${host_os}" in > === > > Danny > > ______ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-

Re: [Rd] terms.object documentation bug? (PR#8353)

2005-11-28 Thread ripley
`terms' object > attr(tf,"specials") ## documented to index `s' in list of terms > ## but in lists of terms, `s' is in position 2, not 4 > attr(tf,"term.labels") > colnames(attr(tf,"factors")) > > ## in lists of variables `s'

Re: [Rd] (PR#8363) R CMD INSTALL fails if cd prints stuff to stdout

2005-12-02 Thread ripley
N"` > for p in ${bundlepkg}; do > ! pkgs="${pkgs} \"`cd "${1}/${p}>/dev/null 2>&1" && ${GETWD}`\"" >if test -f "${1}/${p}/DESCRIPTION.in"; then > ## Try being defensive about missing fin

Re: [Rd] ???UNSURE??? Re: (PR#8363) R CMD INSTALL fails if cd prints

2005-12-05 Thread ripley
On Mon, 5 Dec 2005, Philip Lijnzaad wrote: > On Friday 02 December 2005 18:20, Prof Brian Ripley wrote: > >> What shells are these? > > Bash, mostly, but also ksh and zsh; sorry for not mentioning this. I still don't know what you did to be able to reproduce this (and I d

Re: [Rd] standardized residuals (rstandard & plot.lm) (PR#8367)

2005-12-06 Thread ripley
lm <- function (model, >infl = lm.influence(model, do.coef = FALSE), >...) { > res <- infl$wt.res > hat <- infl$hat > ifelse(hat == 1, 0, res/sqrt(summary(model)$dispersion * (1 - > infl$hat))) > } >

Re: [Rd] (PR#8376 inconsistency between plot(hist(...)) and hist(...)

2005-12-10 Thread ripley
plot.histogram shows plot.histogram has a 'freq' argument, and the correct usage is plot(hist(x), freq=FALSE) -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865

Re: [Rd] 0/1 vector for indexing leads to funny behaviour (PR#8389)

2005-12-13 Thread ripley
t;. But as many times as there is a 1 in a. As it should. > > Best regards, > Axel > > > Appendix: > > b = c("a","b","c","d") > a = c(0,1,1,0) > b[as.logical(a)] > b[a] > a = c(1,0,1,0) > b[as.logical(a)] > b[a]

Re: [Rd] 2 x 2 chisq.test (PR#8415)

2005-12-20 Thread ripley
t; sum(x)/2) > 0 > > else sum((abs(x - E) - 0.5)^2/E) > METHOD <- paste(METHOD, "with Yates' continuity correction") > } > else STATISTIC <- sum((abs(x - E))^2/E) > ## replace end -- B

Re: [Rd] NextMethod causes R 2.2.0 to crash (PR#8416)

2005-12-21 Thread ripley
t; Bill Venables, > CMIS, CSIRO Laboratories, > PO Box 120, Cleveland, Qld. 4163 > AUSTRALIA > Office Phone (email preferred): +61 7 3826 7251 > Fax (if absolutely necessary):+61 7 3826 7304 > Mobile (rarely used):+61 4 1963 4642 > Home Phone:

Re: [Rd] (Debian Bug 344248): R segfaults when pressing Delete (PR#8422)

2005-12-21 Thread ripley
Console (prompt=0xb7f6fafc "", buf=0xbf8bb1ec "", len=1024, addtohistory=0) at /users/ripley/R/svn/R-devel/src/unix/sys-std.c:663 Switching the link from libreadline.so.5 back to libreadline.so.5.0 made this behave again. Can you confirm you are running rl5.1? Given the s

Re: [Rd] 'last.warning' problem at startup; package Matrix (PR#8453)

2005-12-29 Thread ripley
age:graphics, > package:grDevices, package:utils, package:datasets, Autoloads, package:base > > ______ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley, [EMAIL

Re: [Rd] follow-up on qr.coef bug (PR#8478)

2006-01-12 Thread ripley
extraction operation, but maybe there is some case in > which the output of qr_coef_real or qr_coef_cmplx could have more than p > rows. Read the C code: B is a copy of Bin (y) and so no, it cannot happen any more (it could in an earlier version). -- Brian D. Ripley,

Re: [Rd] help.start() and Debian packaging (PR#8483)

2006-01-14 Thread ripley
, instead of local documentation. > > > > A related bug is that if one calls > help.start() when the HTML documentation does not exist, > all future calls to help() will lead to errors. Working as documented is not a bug. -- Brian D. Ripley, [EMAIL PROTECTED] Pr

Re: [Rd] phyper returns 1 if x==k (PR#8499)

2006-01-18 Thread ripley
nth10 > day 06 > svn rev 35749 > language R >> sessionInfo() > R version 2.2.0, 2005-10-06, i686-pc-linux-gnu > > attached base packages: > [1] "methods" "stats" "graphics" "grDevices" "utils" "datasets

Re: [Rd] data.matrix returns mode logical for zero rows (PR#8496)

2006-01-18 Thread ripley
t;> x <- matrix(nr = 2,nc = 1 ) >> mode(x) > [1] "logical" >> x[, 1] <- c(1,2) >> mode(x) > [1] "numeric" >> >> x0 <- matrix(nr = 0, nc = 1) >> x0[, 1] <- numeric(0) >> mode(x0) > [1] "logical" >>

Re: [Rd] function 'eigen' (PR#8503)

2006-01-19 Thread ripley
[,2] [,3] > [1,] -0.5345225+0i 4.720910e-17+2.643897e-09i 4.720910e-17-2.643897e-09i > [2,] -0.2672612+0i 7.071068e-01+0.00e+00i 7.071068e-01+0.00e+00i > [3,] -0.8017837+0i 7.071068e-01-2.643897e-09i 7.071068e-01+2.643897e-09i > > Incorrect imaginary

Re: [Rd] Suboptimal EPS output (PR#8502)

2006-01-19 Thread ripley
help? If you really think this is an FAQ (as distinct from being asked over and over again by a single person), you should submit an FAQ entry on it. We already provide many simple ways, including menu items, for saving to EPS. -- Brian D. Ripley, [EMAIL PROTECTED] Profe

Re: [Rd] read.table with ":" in column names (PR#8511)

2006-01-20 Thread ripley
280 GO:740 > GO:0020 0 0 > GO:0040 0 0 > GO:0120 0 0 > GO:0140 0 0 > GO:0150 0 0 > GO:0180 0 0 > GO:0190 0 0 > > Thanks for

Re: [Rd] (PR#8524) Report on obselete version of R (was example in

2006-01-26 Thread ripley
mission from: (NULL) (67.139.200.41) > > > In ?plot.window, the example includes the argument > names(eurodist) > > in the text function. The argument should be > attr(eurodist,"Labels") -- Brian D. Ripley, [EMAIL PROTECTED] Professor of App

[Rd] pgamma - inadequate algorithm design and poor coding (PR#8528)

2006-01-27 Thread ripley
16), 1e100)-1e100 [1] 0 0 (if it can be believed, but this can be verified independently). So being accurate in the middle of the range is pretty academic, but one can at least avoid returning the nonsense of non-monotone cdfs and NaN/infinite probabilities. -- Brian D. Ripley,

Re: [Rd] Your false remark on PR#1654

2006-01-27 Thread ripley
port says this problem has been fixed (Graphics-fixed/1654), but > it looks like that referred to the unix version. > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > -- Brian D. Ripley,

Re: [Rd] R 2.1.1 installation fails under Suse 10.0 (PR#8533)

2006-01-29 Thread ripley
gfortran such that the fortran 95 compiler was used directly during the R > compilation. -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road,

Re: [Rd] [R] Integer bit size and the modulus operator (PR#8541)

2006-01-30 Thread ripley
its to 512 bits (Typical size >>>> of integers in cryptography). >>> >>> No, but there is at least one contributed package that does multiple >>> precision integer arithmetic. I can't remember the name of it right >>> now, but Google should be able t

Re: [Rd] [R] Integer bit size and the modulus operator (PR#8541)

2006-01-30 Thread ripley
On Mon, 30 Jan 2006, Prof Brian Ripley wrote: > On Mon, 30 Jan 2006 [EMAIL PROTECTED] wrote: > >> On 1/30/2006 1:39 PM, Ionut Florescu wrote: >>> Thank you for the quick reply, I will look into the R packages. >>> For crashing R try this: >>> >>>

Re: [Rd] recover() (PR#8546)

2006-01-31 Thread ripley
indow.default(x, ...)) > 4: window.default(x, ...) > > Selection: 0 > > > > I had to type 0 [to exit] 6 times to actually > exit! > > > Kjetil > > (windows, R2.2.1 from CRAN) > > __ > R-devel@r-project.org ma

Re: [Rd] window() problem (PR#8545)

2006-02-01 Thread ripley
NA NA NA NA NA > [32] NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA > Browse[1]> tsp(y) > NULL > Browse[1]> > > As one can see from the above, the calculated answer y does not have a > tsp attribute. > > Kjetil > > __ > R-devel@r-projec

Re: [Rd] R 2.2.1 installation trouble on SGI/Sun (PR#8575)

2006-02-08 Thread ripley
The Institute of Biotechnology at > Systems Analyst, Techno-Amish & / the University of Helsinki, Finland, > +358-9-19158939 UNIX Dinosaur / employs me, but my opinions are my own. > < URL : http : / / www . helsinki . fi / %7E atossava / > NO FILE ATTACHMENTS > >

Re: [Rd] identify() bug (PR#8576)

2006-02-08 Thread ripley
y hint? The 'labels' are character strings and as.character is using the full precision of your numbers. If you do not want what you asked for, ask for something else, e.g. via round() or format(). -- Brian D. Ripley, [EMAIL PROTECTED] Professor of Applied Statistics, htt

Re: [Rd] Inconsistent documentation in Writing R Extensions (PR#13878)

2009-08-06 Thread ripley
> > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Brian D. Ripley, rip...@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford

Re: [Rd] names<- in data.frame (PR#13916)

2009-09-03 Thread ripley
"") >> tv > > 1 2 > > > > >> sessionInfo() > R version 2.9.0 (2009-04-17) > i386-pc-mingw32 > > locale: > LC_COLLATE=English_United States.1252;LC_CTYPE=English_United > States.1252;LC_MONETARY=English_United > States.1252;LC

Re: [Rd] OS X PDF bug (PR#13943)

2009-09-07 Thread ripley
ix the mfrow=c(5,6) graph that I'm > actually trying to print, > so the bug lies somewhere deeper. Why not use pdf()? That works for me (but then I don't have your printer drivers). > OS X 10.4.11 > R 2.9.2 GUI 1.29 Tiger build 32-bit (5464) > Laserjet 5MP > > Paul

Re: [Rd] 'make install' fails on Solaris (PR#13946)

2009-09-10 Thread ripley
Fatal error: Command failed for target `install' > bash-3.00# > > and the configure that started it all: > ./configure --with-readline=no --with-iconv=no --with-x=no > --enable-static=yes --enable-R-static-lib > --prefix=/home/dev/scratch/bbownes/R > >

[Rd] Detaching one package can remove the S4 methods of another (PR#14087)

2009-11-26 Thread ripley
loaded via a namespace (and not attached): [1] grid_2.10.0 Happens also in 2.10.0 and R version 2.11.0 Under development (unstable) (2009-11-25 r50568) -- Brian D. Ripley, rip...@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Ox

Re: [Rd] Long execution time for quantile() and difftime objects (PR#14092)

2009-11-27 Thread ripley
difftime, although > the > code for that function seems innocuous enough. > > >> sessionInfo() > R version 2.10.0 (2009-10-26) > i386-pc-mingw32 > > locale: > [1] LC_COLLATE=English_Australia.1252 LC_CTYPE=English_Australia.1252 > [3] LC_MONETARY=English_Austr

Re: [Rd] (PR#14103) read.csv confused by newline characters in

2009-12-04 Thread ripley
uite get it. > > -- > O__ Peter Dalgaard Øster Farimagsgade 5, Entr.B > c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K > (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 > ~~ - (p.dalga...@biostat

Re: [Rd] Crash with Unicode and sub (PR#14114)

2009-12-09 Thread ripley
see there are >>> only source releases available so far, which I am not able to compile. >>> >> >> 2.10.1 RC is available now. Please check. It does seem to be >> reproducible in the Windows version, or at least it takes a very long >> time, but tha

Re: [Rd] Incorrect Kendall's tau for ordered variables (PR#14207)

2010-02-08 Thread ripley
33 >> alternative hypothesis: true rho is not equal to 0 >> sample estimates: >> rho >> 1 >> >> ______ >> R-devel@r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel > > > -- > O__ Peter Dal

Re: [Rd] Error in loadNamespace(name) (PR#9464)

2007-01-27 Thread ripley
pace. (NTFS partition) > > I then logged out of Windows, logged into Lunix (Ubuntu Edgy Eft), cd'ed to > where the .RData file lived and tried to start R. > > I have had the same experience with larger (real) workspaces. If I remove the > .RData file there is no problem. >

Re: [Rd] Makevars PKG_LIBS ignored by SHLIB (PR#9473)

2007-01-27 Thread ripley
> so, R CMD SHLIB blah > properly uses PKG_CPPFLAGS and PKG_CFLAGS from Makevars, but PKG_LIBS is > ignored > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Brian D. Ripley,

Re: [Rd] plot.lm (PR#9474)

2007-01-29 Thread ripley
to be done. > > Thanks for your attention (and thanks for a wonderful software system). > > Regards,Rob Kushler > > ______ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Brian D. Ripley, [EMAIL PROTECTE

Re: [Rd] misspelling - intension (PR#9470)

2007-01-29 Thread ripley
gt; perhaps > with the intension of > modifying R’s standard behavior for that class. > > __ > R-devel@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Brian D. Ripley, [EMAIL PROTECTED] P

Re: [Rd] R crashes when used from within rpy (PR#9481)

2007-01-30 Thread ripley
display. > > The version of rpy I am using is rpy-1.0-RC2. > > Please note that I also have the same problem on OpenSuSe-10.2. > > It does not matter whether I install R using provided rpm packages for the > respective Linux system or whether I compile R myself. >

Re: [Rd] Bug in 'pchisq' for x=0.0 (PR#9485)

2007-01-31 Thread ripley
(linux). > > > Best regards, > > Michael Nothnagel > > --- > Dr. Michael Nothnagel > Institute of Medical Informatics and Statistics, > University of Kiel > http://capella.uni-kiel.de/ > --- > > ______ > R-devel@r-pr

  1   2   3   4   5   6   7   8   9   10   >