Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

76 results for “from:Sklyar, Oleg (London)”

Rd \usage clause for an S4 replace method
Sklyar, Oleg (London) · Mar 13, 2009 · r-devel

Given S4 methods [ and [<-, how do I write the Rd-file usage clause for the latter one? What I have now is: \S4method{[}{TimeSeries,TimeDate,missing}(x, i, j, ..., drop) \S4method{[<-}{TimeSeries,TimeDate,missing,ANY}(x, i, j, ..., value) which...

typo in sprintf format string segfaults R
Sklyar, Oleg (London) · Mar 26, 2009 · r-devel

typo as simple as %S instead of %s segfaults R devel: *** R 2.9.0 (svn -r 47821) [/share/research/R-devel/20090203/lib64/R] *** > sprintf("%S%d", "aaa", 1) *** caught segfault *** address 0x8000, cause 'memory not mapped' Traceback: 1...

Google Summer of Code 2009
Sklyar, Oleg (London) · Feb 19, 2009 · r-devel

Thanks for pointing out. playwith looks quite interesting Dr Oleg Sklyar Research Technologist AHL / Man Investments Ltd +44 (0)20 7144 3107 osklyar at maninvestments.com > -----Original Message----- > From: Liviu Andronic [mailto:landronimirc at gmail.com] > Sent: 19 February 2009...

Changing the compiler gfortran to ifort
Sklyar, Oleg (London) · Aug 11, 2009 · r-devel

on Unix alikes possibly: env F77=/path/to/ifort ./configure --prefix=/where/to/install Dr Oleg Sklyar Research Technologist AHL / Man Investments Ltd +44 (0)20 7144 3107 osklyar at maninvestments.com > -----Original Message----- > From: r-devel-bounces at r...

Bug in R -e "command"
Sklyar, Oleg (London) · May 7, 2010 · r-devel

Hi all: since about a month we encountered a problem with R -e command: spaces in the "command" of R -e "command" are no more tolerated. This same issue affects 2.11 patched (05-05-2010), 2.10.1, and...

patch for graphics/R/plot.R that fixes incorrect tick positions
Sklyar, Oleg (London) · Sep 4, 2008 · r-devel

As I haven't got any replies to my earlier posts about incorrect tick positions in plot and matplot, here is the simplest patch to correct this issue (it fixes both plot with xlim/ylim and matplot). The plot.R...

CTRL-C during .Call causes R to quit to command line
Sklyar, Oleg (London) · Mar 30, 2009 · r-devel

If you use JNI or rJava, you should start the VM with -Xrs argument, otherwise the descibed things happen as Java catches the Ctrl-C interrupt Dr Oleg Sklyar Research Technologist AHL / Man Investments Ltd +44 (0)20 7144 3107...

Why no race condition when returning UNPROTECT-ed memory fromC?
Sklyar, Oleg (London) · Apr 14, 2010 · r-devel

Because there is no second thread to do that, R is single threaded. The gc could only be run from within another R API command or macro, but there is none in between. Best Oleg Dr Oleg Sklyar Research Technologist...

showMethods("plot", printTo=FALSE) fails if printTo set to FALSE
Sklyar, Oleg (London) · Aug 20, 2008 · r-devel

Hi everybody, any idea why showMethods fails with the following error when printTo is set to false, i.e. to return the output as a character vector. It works fine if printTo is left default as seen below. The behaviour...

setClassUnion with numeric; extending class union
Sklyar, Oleg (London) · Feb 12, 2009 · r-devel

Hi John, sorry for not posting more info. Strangely I get warnings about setClassUnion with numeric in a very special case: if I define it in a clean R session then there are no warnings, however if I load a...

[Q] R CMD check signals error on code that works from UI
Sklyar, Oleg (London) · Jan 15, 2009 · r-devel

Because there is a % sign, which is stripped out by LaTeX used to build the help system as a comment. Just look at how your example code is output -- the string is unterminated because the matching quote is masked by...

Rmpi: Connection to lifeline [[...,0],0] lost
Sklyar, Oleg (London) · Feb 12, 2009 · r-sig-hpc

After moving to OpenMPI from LAM, we started to get the following error messages with Rmpi: [hpc01:06981] [[11499,1],0] routed:binomial: Connection to lifeline [[11499,0],0] lost The main script is a lengthy 3-hour long process...

Problem with R or fBasics Package (PR#11495)
Sklyar, Oleg (London) · May 21, 2008 · r-devel

It's not a problem with R, it's just fBasics is buggy! It overrides log and round. Please contact the maintainer of the fBasics package. Dr Oleg Sklyar Technology Group Man Investments Ltd +44 (0)20 7144 3803 osklyar...

consistent segfaults in ROracle with one of the databases
Sklyar, Oleg (London) · Mar 27, 2009 · r-devel

Dear list. Has anybody had any issues with ROracle, namely consistently leading to a segmentation fault? One of our oracle databases seems to have certain issues at the moment (do not know what exactly though) and if that one is...

setClassUnion with numeric; extending class union
Sklyar, Oleg (London) · Feb 11, 2009 · r-devel

Dear list: I am looking for a good way to create an S4 class that would extend numeric, but would allow NULL instead of data as well. As far as I can see there is no way at the moment...

optional setValidity()
Sklyar, Oleg (London) · May 7, 2008 · r-devel

sorry I forgot the return statement, it should be if (!object at .validate) return(TRUE) Dr Oleg Sklyar Technology Group Man Investments Ltd +44 (0)20 7144 3803 osklyar at maninvestments.com > -----Original Message----- > From: r-devel-bounces at r...

handling a matrix and .C
Sklyar, Oleg (London) · Dec 1, 2008 · r-devel

You should not have started with R/C API without reading this (first link in google): "Writing R Extensions". For your particular question you want pages 72+ and sections 5.9.3 and 5.9.4, possibly further as well...

Google Summer of Code 2009
Sklyar, Oleg (London) · Feb 19, 2009 · r-devel

Dear Yihui, I am sure there are many possibilities available, but I am not looking for a hack and rather for a versatile high-quality solution. It solution should be fast, reliable and developed to a high standard. Moreover, on...

showMethods("plot", printTo=FALSE) fails if printTo set to FALSE
Sklyar, Oleg (London) · Aug 20, 2008 · r-devel

Thanks for a good tip. Dr Oleg Sklyar Technology Group Man Investments Ltd +44 (0)20 7144 3803 osklyar at maninvestments.com > -----Original Message----- > From: Prof Brian Ripley [mailto:ripley at stats.ox.ac.uk] > Sent: 20 August 2008 13...

Extract method for a new class
Sklyar, Oleg (London) · Sep 22, 2008 · r-devel

You will need to define several for different combinations of i and j types e.g. ANY,missing; ANY,ANY; missing,ANY or possibly for types like integer, character and logical more or less in the following way: setMethod("[", signature...

Can't find what you're looking for? Try searching with Google .