search for: vadim

Displaying 20 results from an estimated 378 matches for "vadim".

2003 Sep 03
3
read.table: check.names arg - feature request
...e in handy. I tend to keep my data in coma-separated files with a header line. The header line is prefixed with a comment sign '#' to simplify identification of these lines. Now when I read.table the files the '#' is converted to '.' while I want it to be discarded. Thanks, Vadim P.S. I don't know if r-help is the right place for feature requests. If it's not please let me know where the right one is.
2004 Sep 24
1
algorithm reference for sample()
...r the vector sizes I use. I want to re-code these functions and I "think" I can come up with a more efficient algorithm. However before I go and reinvent the wheel I wonder if there is a published description of an efficient sampling algorithm with user-specified probabilities? Thanks, Vadim [[alternative HTML version deleted]]
2001 Nov 26
3
Doing things with POSIXt
Dear R-Users, I have a data file with timestamps and I wanted to use POSIXct time data type to represent the respective column. I played around with the type and found a couple of issues: * there seems to be no direct way of reading datetimes into a variable. Let's say this is my file "1992-02-27 23:03:20 PST" "1992-02-27 22:29:56 PST" "1992-01-14 01:03:30 PST"
2008 Aug 14
1
AMI and extensions.conf
Hello I'm looking for a wayy to modify extensions.conf It seems that PutConfig AMI command is not supposed to work on extensionsq.conf Any ideas? Thanks Vadim
2014 Sep 26
3
[LLVMdev] [lldb-dev] RFC: LLVM should require a working C++11 <thread>, <mutex>, and <atomic>
...pthreads, both mingw flavors produce the same results. BTW, I've tried to quantify the slowdown: a quick test indicates that LLVM build that uses pthreads is about 10% slower than the one which doesn't. This is less that I remember seeing last year (something got optimized?), but still... Vadim On Fri, Sep 26, 2014 at 3:29 AM, Yaron Keren <yaron.keren at gmail.com> wrote: > Yes, of course. > > I refer to the significant slowdown of Rust compiler when compiled with > -pthreads vs -win32threads flavor. > If Rust can be compiled without <mutex> and <thread&gt...
2008 Nov 26
3
distro recommedation
...at satisfied. The migration of my windows-systems are not working in an acceptable way and the pv-drivers for win of suse are not a speed boost at all. Well I could spend big money for Xen Enterprise or VirtualIron - but - do I really have to spend that money? So - let me know - what you think. Vadim -- Mit freundlichen Grüßen Vadim Bulst Systemadministrator BBZ Biotechnologisch-Biomedizinisches Zentrum Universität Leipzig Deutscher Platz 5, 04103 Leipzig Tel.: 0341 97 - 31 307 Fax : 0341 97 - 31 309 _______________________________________________ Xen-users mailing list Xen-users@lists.xen...
2003 Feb 19
4
fitting a curve according to a custom loss function
...stion is this: suppose I have a utility function U(a_i, f()), where f() is say a spline. Is there a general optimizer that could find an extremum of such U()? If not, how easy it would be to hack up something like this? Would it become easier if U() depended on f() only, i.e. no a_i terms? Thanks, Vadim -------------------------------------------------- DISCLAIMER \ This e-mail, and any attachments thereto, is intend ... [[dropped]]
2004 May 01
5
skip lines on a connection
...ip=1e6, nmax=0) but somehow this doesn't work: > scan(con, skip=10, nmax=0) Error in scan(con, skip = 10, nmax = 0) : "scan" expected a real, got "A;12;0;" I can stick to readLines, but am curious if there is a better way. I use R-1.8.1 on RH-7.3. Thanks, Vadim [[alternative HTML version deleted]]
2005 Mar 08
4
how modify object in parent.env
...a new environment > local(get("x", parent.env(environment()))[1] <- NA) Error in eval(expr, envir, enclos) : Target of assignment expands to non-language object # On the other hand retrieval works just fine > local(get("x", parent.env(environment()))[1]) [1] 1 Thanks, Vadim
2004 Jun 14
5
mkChar can be interrupted
...m i686-pc-linux-gnu arch i686 os linux-gnu system i686, linux-gnu status major 1 minor 8.1 year 2003 month 11 day 21 language R Thanks, Vadim
2017 Sep 01
3
can't get quota working. I use static userdb driver.
...ash:storage=+10%% quota_exceeded_message = "552 5.2.2 Mailbox is full" } doveconf -n is attached. # doveadm quota get Quota name Type Value Limit % "User quota" STORAGE 0 10240 0 "User quota" MESSAGE 0 - # doveadm quota get -u vadim Quota name Type Value Limit % "User quota" STORAGE 0 10240 0 "User quota" MESSAGE 0 - # du -sh /var/mail/vadim/ 23M /var/mail/vadim/ I tried to pass quota_rule as an argument to userdb, quota is being parsed, but still doesn't work. I...
2014 Apr 14
2
[LLVMdev] Emit code for 'unreachable'
...this happening, at least not for unreachables that follow calls to 'noreturn' functions. On Apr 14, 2014, at 3:48 AM, Anton Korobeynikov <anton at korobeynikov.info> wrote: > Hello > > x86 backend emits ud2 instruction in this case > > On Mon, Apr 14, 2014 at 1:46 PM, Vadim Chugunov <vadimcn at gmail.com> wrote: >> Hi, >> Is it somehow possible to have LLVM emit machine code for the 'unreachable' >> IR instruction, which would assert that it indeed never gets reached? >> >> Vadim >> >> ___________________________...
2001 Sep 17
3
computational capacity of Linux network
...ER overhead to set such a job comparatively to running a command from shell? How reliable and convenient error reporting is if the job fails? * how much of sysadmin time is required to maintain such a network? * any other comment. Please reply directly to me and I'll post the summary. Thanks, Vadim -------------------------------------------------- DISCLAIMER This e-mail, and any attachments thereto, is intended only for use by the addressee(s) named herein and may contain legally privileged and/or confidential information. If you are not the intended recipient of this e-mail, you are her...
2005 May 07
4
how to add method to .Primitive function
...I tried to write the dim method for the list class, but R doesn't seem to dispatch to it: > dim.list = function(x) c(length(x[[1]]), length(x)) > dim(list(1)) NULL > dim.list(list(1)) [1] 1 1 What is the correct way of registering dim.list with .Primitive("dim")? Thanks, Vadim [[alternative HTML version deleted]]
2014 Aug 04
6
[LLVMdev] Argument Lowering Redux
Hi, Having just found an ABI conformance bug in a compiler front-end, I am curious: is the state of target-independent argument lowering in LLVM still the same as when this thread was taking place?: http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-February/thread.html#59387 Vadim -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140803/e7dd5227/attachment.html>
2004 Apr 23
3
time zones in POSIXt
...t;, "PST") - as.POSIXlt("2000-05-10 10:15:00", "GMT") Time difference of 0 secs I was expecting to see 8hrs (which is the time difference between London and San-Francisco). Why is it so and what is the correct way of doing it? I use R-1.8.1 on RH-7.3. Thanks, Vadim [[alternative HTML version deleted]]
2004 Sep 24
1
algorithm reference for sample() - Knuth
Thank you for the reference to Knuth. Indeed in vol. 2 he has a > -----Original Message----- > From: Tony Plate [mailto:tplate@blackmesacapital.com] > Sent: Friday, September 24, 2004 8:05 AM > To: Vadim Ogranovich > Subject: Re: [Rd] algorithm reference for sample() > > Have you tried looking in Knuth's books on computer > algorithms? (They are classics for good reason!) If I > remember correctly, a colleague found a very clever and fast > algorithm for just this proble...
2005 Mar 22
1
documentation on seek *does not* need update
Well, "integer" is also a storage.mode in R. It is not immediately clear which meaning the help page uses. I guess some extra elaboration would be helpful. Anyway, thank you for the clarification, Vadim > -----Original Message----- > From: Prof Brian Ripley [mailto:ripley@stats.ox.ac.uk] > Sent: Tuesday, March 22, 2005 9:54 AM > To: Vadim Ogranovich > Cc: r-devel@stat.math.ethz.ch > Subject: Re: [Rd] documentation on seek *does not* need update > > On Tue, 22 Mar 2005, V...
2014 Sep 26
2
[LLVMdev] [lldb-dev] RFC: LLVM should require a working C++11 <thread>, <mutex>, and <atomic>
Hi Yaron, Not sure I understand your question. Wasn't <mutex> one of the more important C++11 features that LLVM would like to use? On Thu, Sep 25, 2014 at 1:24 AM, Yaron Keren <yaron.keren at gmail.com> wrote: > Vadim, > > Thanks for the feedback on the -win32. A dependency on a small DLL with > BSD license does not sound too bad, but performance regression is obviously > a serious problem. > > However, by disabling <mutex> use with -pthreads rust performance should > be same as -win32...
2004 Dec 03
4
seq.Date requires by
...uot;)) Error in seq.Date(from = as.Date("1996-01-01"), to = as.Date("1996-12-01")) : exactly two of `to', `by' and `length.out' / `along.with' must be specified This is R-1.9.1, but I haven't seen anything pertaining in the release notes of 2.0.x. Thanks, Vadim