search for: aboyoun

Displaying 16 results from an estimated 16 matches for "aboyoun".

2012 Feb 16
1
Unstable reproduce for potential issue with CHARSXP creation
I stumbled across one of those intermittent bugs where the code sometimes works and sometimes doesn't. Below is an example run showing a failure where a CHARSXP object was not properly created (by the sub function?). I was able to reproduce this error on three different R builds in fresh R sessions, but it sometimes takes a few start up R -> run code -> close R iterations for the
2008 Dec 01
1
[BioC] Rcurl 0.8-1 update for bioconductor 2.7
...indows? (I'm moving this topic to r-help from bioconductor on suggestions seen on that list.) Thanks for your help. -Roger > -----Original Message----- > From: bioconductor-bounces at stat.math.ethz.ch > [mailto:bioconductor-bounces at stat.math.ethz.ch] On Behalf Of > Patrick Aboyoun > Sent: Thursday, May 29, 2008 8:49 PM > To: Steve Lianoglou > Cc: Yan Zhou; bioconductor at stat.math.ethz.ch > Subject: Re: [BioC] Rcurl 0.8-1 update for bioconductor 2.7 > > Steve and Yan, > We just uploaded source, Windows binary, and MacOS X Tiger > binary packages fo...
2017 Jul 02
2
Big datasheet
Alguien sabe donde puedo encontrar algun datasheet gigante, de más de 5 gigas, para poder practicar con grandes volumenes de información? Lo que quiero es probar a cargarlos con h20 y crear modelos con ellos. Me gustaria sobretodo problemas de clasificación... Gracias Jesús [[alternative HTML version deleted]]
2009 Jun 18
1
validObject throws non-caught error when slot doesn't exist
I have been retooling an S4 class definition to include another slot and have found that the methods::validObject function (defined in methods/R/SClasses.R) in R-devel throws an error that isn't caught internally (and thus not controllable by 'test' argument) when retrieving a non-existent slot. The offending line of code is shown below: > validObject function (object, test =
2010 Apr 19
1
Issue with aggregate.ts and/or %\% on Windows
I've stumbled across an issue with aggregate.ts that either is due to a misuse of %/% or something deeper relating to numerical precision on Windows. The test code is x <- rep(6:10, 1:5) as.vector(aggregate(as.ts(x), FUN = mean, ndeltat = 5)) On Linux and Mac I get the correct answer > x <- rep(6:10, 1:5) > as.vector(aggregate(as.ts(x), FUN = mean, ndeltat = 5) [1] 7.2 8.8
2006 Mar 29
0
Message to R-help
...ackage author, and you are interested in participating in the beta test, see the full details on the S-PLUS 8 beta test and complete the registration form at the Insightful website: http://www.insightful.com/support/splus8beta/ Best regards from the S-PLUS product management team, Patrick Aboyoun (S-PLUS Platform) Michael O'Connell (Life Sciences) David Smith (Finance) [[alternative HTML version deleted]]
2006 Mar 29
7
S-PLUS 8 beta program [repost]
...ackage author, and you are interested in participating in the beta test, see the full details on the S-PLUS 8 beta test and complete the registration form at the Insightful website: http://www.insightful.com/support/splus8beta/ Best regards from the S-PLUS product management team, Patrick Aboyoun (S-PLUS Platform) Michael O'Connell (Life Sciences) David Smith (Finance) -- David M Smith <dsmith at insightful.com> Senior Product Manager, Insightful Corp, Seattle WA Tel: +1 (206) 802 2360 Fax: +1 (206) 283 6310
2010 Apr 20
1
bug in aggregate.ts
Hi, I am getting unexpected behaviour from aggregate.ts(). The 'ndeltat' argument is effectively being reduced by 1 in some cases, even when it is an integer, with the result that the blocks to be aggregated are not of the expected size, and also that the end() of the aggregated series is much later than the end() of the original series. rawts <- ts(rep(1:10, each = 5), start = 1) ##
2009 May 10
2
In C, a fast way to slice a vector?
Hello, Suppose in the following code, PROTECT(sr = R_tryEval( .... )) sr is a RAWSXP vector. I wish to return another RAWSXP starting at position 13 onwards (base=0). I could create another RAWSXP of the correct length and then memcpy the required bytes and length to this new one. However is there a more efficient method? Regards Saptarshi Guha
2009 Apr 24
1
Managing DLLs with the same names in an R session
...m (Bioconductor) package graph. Unfortunately, the current stable release of graphviz for Windows http://www.graphviz.org/pub/graphviz/stable/windows/graphviz-2.22.2.msi contains a graph.dll in its bin directory. The situation is that Rgraphviz needs to link to the graph.dll from graphviz, E:\paboyoun>..\biocbld\bbs-2.4-bioc\R\bin\R CMD build Rgraphviz [...omitting output...] ** libs making DLL ... [...omitting output...] gcc -shared -s -o Rgraphviz.dll tmp.def LL_funcs.o Rgraphviz.o RgraphvizInit.o agopen.o agread.o agwr ite.o bezier.o buildEdgeList.o buildNodeList.o doLayout.o graphvizV...
2010 Apr 22
2
R2.11.0 - rasterImage() and barplot fill-patterns
...is a partial match to the > argument name as documented on the help page: this also > applies to replacement functions of two arguments. > > o base::which() uses a new .Internal function when arr.ind is > FALSE resulting in a 10x speedup. Thanks to Patrick Aboyoun > for implementation suggestions. > > o Help conversion to text now uses the first part of \enc{}{} > markup if it is representable in the current output encoding. > On the other hand, conversion to LaTeX with the default > outputEncoding = "A...
2010 Apr 22
0
R 2.11.0 is released
...their first argument is a partial match to the argument name as documented on the help page: this also applies to replacement functions of two arguments. o base::which() uses a new .Internal function when arr.ind is FALSE resulting in a 10x speedup. Thanks to Patrick Aboyoun for implementation suggestions. o Help conversion to text now uses the first part of \enc{}{} markup if it is representable in the current output encoding. On the other hand, conversion to LaTeX with the default outputEncoding = "ASCII" uses the seco...
2010 Apr 22
0
R 2.11.0 is released
...their first argument is a partial match to the argument name as documented on the help page: this also applies to replacement functions of two arguments. o base::which() uses a new .Internal function when arr.ind is FALSE resulting in a 10x speedup. Thanks to Patrick Aboyoun for implementation suggestions. o Help conversion to text now uses the first part of \enc{}{} markup if it is representable in the current output encoding. On the other hand, conversion to LaTeX with the default outputEncoding = "ASCII" uses the seco...
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems
2012 Feb 27
0
Conflict from saved implicit generics in methods package for rcond, norm, backsolve
This issue ties loosely into other recent S4 topics on this board. The methods package defines a number of implicit generics for linear algebra related functions (rcond, norm, backsolve) that, when used, interfere with base package operations. Here is the cut-and-paste version of the code the illustrates the problem: # rcond x1 <- cbind(1, 1:10) rcond(x1) setGeneric("rcond")
2008 Apr 09
1
Windows problem related to using shortPathName for Sweave style file
...e hit a snag because the BioC build system has long path names (e.g. D:\biocbld\bbs-2.2-bioc\R) and these path names are not resolving properly by MiKTeX 2.7 during vignette construction. Take, for example, the attached vignette from Biobase, Bioconductor.Rnw. I have built R from source at E:\paboyoun\bbs-2.2-bioc\R and the session information for this R is === BEGIN R BLOCK === > sessionInfo() R version 2.7.0 beta (2008-04-09 r45179) i386-pc-mingw32 locale: LC_COLLATE=English_United States.1252;LC_CTYPE=English_United States.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_T...