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.

23 results for “from:Vadim Kutsyy”

R and TeraData
Vadim Kutsyy · Oct 17, 2007 · r-help

Hello, Does anyone know a way to connect from R on Linux box to TeraData server? I can use ODBC connection on Windows box, but with amount of data I need (and prefer) to use large Linux box. Thanks, Vadim

allocMatrix limits
Vadim Kutsyy · Jul 31, 2008 · r-help

I am getting an error "allocMatrix: too many elements specified" when I am trying to create large matrix or vector (about 1 billion elements). How can I find out limits on allocMatrix? Can I increase them? Thanks, Vadim. PS: I...

using graphapp.h
Vadim Kutsyy · Jun 26, 2000 · r-help

Another question "graphapp.h" in R1.1 defines number of plotting function. is there an example of how to use them? Thank. --------------------------- Vadim Kutsyy vadim at kutsyy.com http://www.kutsyy.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci...

nargs() inside "[.myclass"
Vadim Kutsyy · Jun 26, 2000 · r-help

> Apropos: Here's a little exercise: > > > f<-function(...)nargs() > > f(1) > [1] 1 > > f() > [1] 0 > > f(,) > [1] 2 > > f(,,) > [1] 3 > > Now, how do you call f with exactly *one* missing argument? Well, you got me. How do you...

nargs() inside "[.myclass"
Vadim Kutsyy · Jun 26, 2000 · r-help

> This does seem to work: > > > "[.myclass"<-function(x,...) > > {n<-nargs();if(n==2&&missing(..1))n<-1;print(n-1)} > > x[] > [1] 0 > > x[1] > [1] 1 > > x[1,2] > [1] 2 It does, thank you. could you explain what...

nargs() inside "[.myclass"
Vadim Kutsyy · Jun 26, 2000 · r-help

> > > Apropos: Here's a little exercise: > > > > > > > f<-function(...)nargs() > > > > f(1) > > > [1] 1 > > > > f() > > > [1] 0 > > > > f(,) > > > [1] 2 > > > > f(,,) > > > [1] 3 > > > > > > Now, how do you call f with exactly *one* missing argument? > > > > Well, you got me. How do you...

using graphapp.h
Vadim Kutsyy · Jun 28, 2000 · r-help

> Scheleton: > #include "Graphics.h" > ............. > DevDesc *dd = CurrentDevice() /* or GetDevice(number of device) */ > Then > (a) using GPolygon or similar function (in main/graphics.c ) It seems to work. I'll you know when I'll finish the function. Thanks a lot...

allocMatrix limits
Vadim Kutsyy · Jul 31, 2008 · r-help

>> I am getting an error "allocMatrix: too many elements specified" when >> I am trying to create large matrix or vector (about 1 billion elements). >> >> How can I find out limits on allocMatrix? Can I increase them? > > ?"Memory-limits", and you...

boxplot grouped by two variables.
Vadim Kutsyy · Nov 21, 2000 · r-help

Is there a quick way to make boxplots groups by two variables? By that I mean, that if x axes have values ("A","B","C"), than at each value there would be a few boxplots each for a value of...

Porting S library which use "graphics.h" and "device.h"
Vadim Kutsyy · Jun 21, 2000 · r-help

Hello. I am porting Splus library to R, which use S "graphics.h" and "device.h", the library makes a number of high resolution plots using these. Does anyone have an experience with similar porting? I don't really want...

rect() question.
Vadim Kutsyy · Aug 21, 2000 · r-help

Hello. I have another rect question. If I want to make a lot of rectangular, without borders, and without any spaces between them, how could I do it? I.e. > plot(-1:1., -1:1., type = "n") > rect(0,-1...

Thanks for the help with graphics.
Vadim Kutsyy · Jun 28, 2000 · r-help

I just wanted to say thanks for the help I was getting for last few days. I made plotting working from c code. now plotting is 2-3 sec, instead of 3-5 minutes. The only problem, that I have...

nargs() inside "[.myclass"
Vadim Kutsyy · Jun 26, 2000 · r-help

I am writing a function to work with class I am defining. I have a question about using nargs() inside of parentheses function. nargs() shows the same for supplying 1 argument, or no arguments at all. Here is a small...

using graphapp.h
Vadim Kutsyy · Jun 28, 2000 · r-help

> > "graphapp.h" in R1.1 defines number of plotting function. is there an > > example of how to use them? > > > > Look into the src/gnuwin32/windlgs directory in the R source. > It is an example of a package, contributed by Brian...

boxplot grouped by two variables.
Vadim Kutsyy · Nov 21, 2000 · r-help

>> Is there a quick way to make boxplots groups by two variables? By that >> I mean, that if x axes have values ("A","B","C"), than at each value >> there would be a few boxplots each for a value of...

R under Win 95-- question #2
Vadim Kutsyy · Jul 14, 2000 · r-help

windows() will open new graphical windows. it can take number of options (see help). -------------------------------------------------------- Vadim Kutsyy http://www.kutsyy.com vadim at kutsyy.com The University of Michigan - Ann Arbor Ph.D. Student > -----Original Message----- > From: owner-r-help at...

R and TeraData
Vadim Kutsyy · Oct 17, 2007 · r-help

David, Thank you for the idea, I didn't think about it. TeraData does have Linux ODBC drivers. Thanks again. Vadim David Scott wrote: > On Wed, 17 Oct 2007, Vadim Kutsyy wrote: > >> Hello, >> >> Does anyone know a way to connect...

allocMatrix limits
Vadim Kutsyy · Aug 1, 2008 · r-help

Martin Maechler wrote: > > VK> The problem is in array.c, where allocMatrix check for > VK> "if ((double)nrow * (double)ncol > INT_MAX)". But why > VK> itn is used and not long int for indexing? (max int is > VK> 2147483647, max...

nargs() inside "[.myclass"
Vadim Kutsyy · Jun 26, 2000 · r-help

> > "[.myclass"<-function(x,...) > > {n<-nargs();print(n-1);m<-match.call();print(m)} > > x[] > [1] 1 > [.myclass(x = x, ) > > x[1] > [1] 1 > [.myclass(x = x, 1) > > x[1,2] > [1] 2 > [.myclass(x = x, 1, 2) > > Doesn't look...

mvtnorm
Vadim Kutsyy · Nov 15, 2000 · r-help

Hello. I have a small question. For computing normal CDF you are using "mvtdst" wouldn't be use of "mvnpack" be more efficient? Thanks. Vadim Kutsyy vadim at kutsyy.com htpp://www.kutsyy.com Torsten Hothorn wrote: > > Announcement: mvtnorm > > Multivariate...

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