Displaying 2 results from an estimated 2 matches for "hmis".
Did you mean:
his
2011 Jun 17
1
Errorbars
Hi,
Does anyone know how i get rid of the marker point in my error bars? The
bars default function (it seems) is to have a dot in the middle of the bar,
however i don't want it there.
I am using Hmis to draw my errorbars and code is
a<-as.vector(tapply(Sporangia,list(Host,Isolate),mean))
b<-as.vector(tapply(Sporangia,list(Host,Isolate),sd))
c<-sqrt(b/36)
errbar(c(1.5,2.5,3.5,5.5,6.5,7.5),(tapply(Sporangia,list(Host,Isolate),mean)),a+c,a-c,add=T)
Cheers
Anna
[[alternative HTML ver...
2010 Apr 16
3
problem with FUN in Hmisc::summarize
Hi all,
I'd like to use the Hmisc::summarize function, but it uses a function (FUN)
of a single vector argument to create the statistical summaries.
Consider an easy case: I'd like to compute the correlation between two
variables in my dataframe, grouped according to other variables in the same
dataframe.
For exemple, consid...