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.

57 results for “from:Matej Cepl”

Plot optimization [Was: Re: [R] Plotting Speed: R vs Octave]
Matej Cepl · Dec 3, 2002 · r-help

On Tue, 3 Dec 2002, Ben Bolker wrote: > It seems to make more sense to put a tiny bit of effort into > thinning the points at your end rather than building code into > R's postscript driver to deal with...

Crawley's book on S-Plus and one strangeness
Matej Cepl · Dec 3, 2002 · r-help

Jari Oksanen wrote: > > You need a better introductory guide! > > Than Crawley? (Was this an instant book review?) BTW, I really do not want to say anything against the book, which is excellent in my newbie's humble(?) opinion. Matej -- Matej...

Wrong question [Wasn't: Re: [R] fast mkChar]
Matej Cepl · Jun 9, 2004 · r-help

On Wednesday 09 of June 2004 09:52, you wrote: > This is my first message to the list and I believe the question > I am including is a simple one. http://www.r-project.org/posting-guide.html -- Matej Cepl...

Pearson's correlation coefficient?
Matej Cepl · Nov 20, 2002 · r-help

How do I get non-squared correlation coefficient in some more sensible way than sqrt(summary(lm(y~x))$r.squared)? Thanks Matej -- Matej Cepl, matej at ceplovi.cz, Finger: 89EF 4BC6 288A BF43 1BAB 25C3 E09F EF25 D964 84AC...

Still missing something on missing values...
Matej Cepl · Oct 27, 2002 · r-help

On Sun, Oct 27, 2002 at 01:48:26PM -0800, Thomas Lumley wrote: > Distinctly weird. Considering the price tag of SPSS I would use much stronger words, if I bought the thing myself. :-) Matej -- Matej Cepl, matej at ceplovi.cz...

confidence interval in "predict.lm"
Matej Cepl · Nov 15, 2002 · r-help

Thomas Lumley wrote: > You asked R for a confidence interval for the predicted mean at x. If you > want a prediction interval at x you need interval="prediction" not > interval="confidence". Slightly OT question to this thread: How can I...

[NB] lm problems
Matej Cepl · Nov 26, 2002 · r-help

On Tue, 26 Nov 2002 ripley at stats.ox.ac.uk wrote: > You can't do linear regression with an ordered factor as a response. > If you mean to code the levels you need to do so explicitly by > codes...

GNUPLOT
Matej Cepl · Oct 31, 2002 · r-help

Hi, I advertised gnuplot as a better alternative to the general graphing program. It came to my knowledge, that the website I have sent to this list is dead -- the correct one is http://www.gnuplot.info. Matej -- Matej Cepl...

Crawley's book on S-Plus and one strangeness
Matej Cepl · Dec 2, 2002 · r-help

ripley at stats.ox.ac.uk wrote: > They are not in S-PLUS. They are Crawley's own, but he does not > say where they are. Recently I managed to find them via the publisher's > web site, which links...

What's going on? (strange standard deviation)
Matej Cepl · Nov 15, 2002 · r-help

I have probably misunderstood something (again :-(): > CEMPLOY<-TEMPLOY[!is.na(TEMPLOY)] > sum(CEMPLOY^2/length(CEMPLOY))-mean(CEMPLOY)^2 [1] 30877.28 > var(TEMPLOY,na.rm=TRUE) [1] 30981.25 Could anybody tell me, what's going on? I suppose...

t-test for correlation matrix?
Matej Cepl · Nov 23, 2002 · r-help

Hi, I understand that I can find t-test for the significance of the correlation coefficient on sample to population, but is there way how to make this test for more than one pair of variables together as easily as...

Counting NA?
Matej Cepl · Oct 22, 2002 · r-help

Hi, how to do quickly equivalent of the following? counter = 0 for(i in 1:length(data$S2)) { if(!is.na(data$S2[i])) { counter = counter + 1 } } I have imagined something like length(x,na.rm=TRUE). How can I...

Spam on the list [Was: Re: [R] Urgent ...]
Matej Cepl · Nov 4, 2002 · r-help

On Mon, Nov 04, 2002 at 11:08:49AM +0100, Martin Maechler wrote: > Even if only subscribers could post, we would have to protect > from spam quite a bit, since many spams and even more viruses > are now spread by...

printing R generated postcript files
Matej Cepl · Jun 18, 2004 · r-help

On Wednesday 16 of June 2004 21:23, Dirk Eddelbuettel wrote: > That may be related. I only recently set R_PAPERSIZE to be driven from > Debian's global paperconf setting which is supposed result in > /etc/R/Renviron having > > ## edd...

t-test for correlation matrix?
Matej Cepl · Nov 25, 2002 · r-help

Emmanuel Paradis wrote: > Look at this post from Bill Venables. > > http://www.r-project.org/nocvs/mail/r-help/2000/4062.html > > Don't forget to look at the end of his message where he warns > if you have unequal...

sully question (R-1.6.0 on Jaguar)
Matej Cepl · Oct 26, 2002 · r-help

On Sat, Oct 26, 2002 at 03:35:12PM -0500, Ulises Mora Alvarez wrote: > Second: After successful ./configure & make, How in the world can I > launch the R software? You should make probably also 'make install' (see INSTALL file) and...

RODBC installation in debian
Matej Cepl · Apr 22, 2004 · r-help

On Thursday 22 of April 2004 08:29, Jean Eid wrote: > I just did this yesterday. you do not have an ODBC driver ( as > it says in the log). you need to (as root) use apt-get install > unixodbc and...

problem in long select from RODBC
Matej Cepl · Jun 18, 2004 · r-help

On Wednesday 16 of June 2004 14:42, Wolski wrote: > sqlQuery(channel, "select dir, c \ > from firsthit3 \ > where dir LIKE \"%SCHULEN%\"") Another option is paste(). This works for me (selectedCities is a constant set outside of this function): getData <- function...

Pearson's correlation coefficient?
Matej Cepl · Nov 21, 2002 · r-help

ripley at stats.ox.ac.uk wrote: > or just cor(x, y). Thanks, that's it. > > > sqrt(summary(lm(y~x))$r.squared)? > > That's lost the sign, BTW. You are right, of course. Matej -- Matej Cepl, matej at ceplovi...

frequency table
Matej Cepl · Nov 10, 2002 · r-help

On Sun, Nov 10, 2002 at 11:55:46AM +0100, Milan Toth wrote: > is anybody whoo know something about making frequency tables in R. i'm > just beginner in R. thank you. The command is called table(). Hezk? den, Mat...

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