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.

21 results for “from:Søren Merser”

hashing
Søren Merser · Oct 16, 2004 · r-help

is hashing implemented in R regards s??ren

rw1062
Søren Merser · Jun 25, 2003 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20030625/166a5583/attachment.pl

setting tabstop
Søren Merser · Dec 29, 2004 · r-help

hi is it possible to change tabstop (default 8) in the GUI ? regards soren i'm using winxp sp2 R ver. 2.0.1

R(DCOM) / StatConnector and PHP
Søren Merser · May 16, 2006 · r-help

hi does anyone have knowledge on how to connected to StatConnector from PHP I have tried: new COM("STATCONNECTORSRVLib.StatConnector") or die("Unable to instantiate StatConnector"); with no succes regards soren

ftable to LaTeX
Søren Merser · Jan 19, 2004 · r-help

hi there is there a way to convert objects of class ftable into LaTex code preserving the 'look' with row and column infomation? xtable() {xtable} can't handle such objects and latex() {Hmisc} just texify the number matrix, without row...

survfit, unused argument(s) (error ...)
Søren Merser · Jul 8, 2006 · r-help

Hi It seems that survfit() doesn't accept the argumnet 'error' as below >survfit(fit, error='greenwood') Error in survfit.coxph(fit, error = "greenwood") : unused argument(s) (error ...) Isn't is allowed to do that for a coxph object? Regards...

integer vector to a string
Søren Merser · May 10, 2006 · r-help

hi there is there a way that i can coerce a vector of integers to ONE string with the numbers comma separated like: 1:500 -> "1,2,3, ..., 500" i've tried deparse, but it divides the result into a...

y-axis and resizing window
Søren Merser · Jun 12, 2005 · r-help

hi using plot(..., las=1), i.e. horizontal axis labels, the labels on the y-axis jams if the heigth of the graphics windov becomes too low while both x-axis and y-axis kind of removes superflus lables with...

faster vector subtraction??
Søren Merser · Jan 16, 2002 · r-help

hi is there a faster way to do this? i <- 1 for(x in vector1) for(y in vector2) { m[[i]] <- (x - y) i <- i + 1 } regards soren -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik...

subset drop unused levels
Søren Merser · Jun 27, 2004 · r-help

hi there tried to use subset with drop=TRUE, but all the 'old' levels are preserved, i.e. when calling e.g. ftable a lot of zeros are displayed >x<-subset(LREG, (kir=='AA' | kir=='BB') & (type=='t1' | otype=='t2...

readline library for Redhat 7.2
Søren Merser · Mar 16, 2002 · r-help

Could anyone please point me to the library readline41-4.1-10.i386.rpm which is requiered for installing the R-base package on Redhat 7.2 regards -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik...

emacs, ess, command completion?
Søren Merser · Jul 6, 2002 · r-help

I'm using win XP R 1.51 (Rterm) emacs-20.7 ess-5.1.20 and everything except from command completion works Is it possible to have this functionality using a windows enviroment? thanks soren -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list...

how to make an empty screen
Søren Merser · Feb 5, 2005 · r-help

Hi I want to plot control charts for several events grouped by employees. As every employees doesn't encounter every event, a variable number of control charts is produced in turn. Now what I need is a way to get...

which duplicated rows to delete
Søren Merser · Oct 30, 2006 · r-help

Hi Say I've this vector with several duplicates >x<-c(1,2,3,4,2,6,2,8,2,3) >which(duplicated(x)) [1] 5 7 9 10 11 But what I realy want is somthing like: List({2...

hashing
Søren Merser · Oct 17, 2004 · r-help

named lists will do regard s??ren btw thanks for the link to S Poetry ----- Original Message ----- From: "Patrick Burns" <pburns at pburns.seanet.com> To: "S??ren Merser" <merser at image.dk> Sent: Saturday, October 16, 2004 5:01...

table and getting rownames
Søren Merser · Aug 18, 2004 · r-help

exactly what i needed thanks a lot soren ----- Original Message ----- From: "Peter Dalgaard" <p.dalgaard at biostat.ku.dk> To: <merser at tiscali.dk> Cc: "R-help" <r-help at stat.math.ethz.ch> Sent: Tuesday, August 17, 2004 2...

integer vector to a string
Søren Merser · May 10, 2006 · r-help

yes, of cause, i'm sorry, don't what i was thinking about regards ----- Original Message ----- From: "Peter Dalgaard" <p.dalgaard at biostat.ku.dk> To: "S?ren Merser" <merser at image.dk> Cc: "R - help" <r-help at stat...

Variables in RODBC environment
Søren Merser · Oct 5, 2006 · r-help

hi, use paste: # a string/number/date pn <- '39R5238'; sql <- paste("select u.unitid from test where part =", pn) ^^ # an array of strings/numbers/dates pn=c(1,2,3,4) sql <- paste("select u.unitid from test where part...

setting tabstop
Søren Merser · Dec 29, 2004 · r-help

you are quite right, i didn't read the source - only sought through the documentation - since i would like to change tabsize from within a function i'm printing a table aligning entries with tabs the output is messed up...

y-axis and resizing window
Søren Merser · Jun 12, 2005 · r-help

thanks with 'jams' i meant messes up, but your term overlap is exactly what i actually had in mind though a minor problem, do you think that the code will change to enable checking for enough height-wise space? regards...

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