Displaying 3 results from an estimated 3 matches for "trim3".
Did you mean:
trim
2012 Jun 14
0
fixed trimmed mean for j-group
...1)
r2=k2-(alpha*n2)
r3=k3-(alpha*n3)
r4=k4-(alpha*n4)
## j-group trimmed mean
e1=k1+1
f1=n1-k1
e2=k2+1
f2=n2-k2
e3=k3+1
f3=n3-k3
e4=k4+1
f4=n4-k4
trim1=1/((1-2*alpha)*n1)*(sum(mat1[e1:f1]) + r1*(mat1[k1]+mat1[n1-k1+1]))
trim2=1/((1-2*alpha)*n2)*(sum(mat2[e2:f2]) + r2*(mat2[k2]+mat2[n2-k2+1]))
trim3=1/((1-2*alpha)*n3)*(sum(mat3[e3:f3]) + r3*(mat3[k3]+mat3[n3-k3+1]))
trim4=1/((1-2*alpha)*n4)*(sum(mat4[e4:f4]) + r4*(mat4[k4]+mat4[n4-k4+1]))
## sample winsorized mean
x1=(1-r1)*mat1[k1+1]+r1*mat1[k1]
x2=(1-r2)*mat2[k2+1]+r2*mat2[k2]
x3=(1-r3)*mat3[k3+1]+r3*mat3[k3]
x4=(1-r4)*mat4[k4+1]+r4*mat4[k4...
2012 Jul 07
0
fixed trimmed mean for group
...e3=k3+1
> f3=n3-k3
>
> e4=k4+1
> f4=n4-k4
>
> trim1=1/((1-2*alpha)*n1)*(sum(__mat1[e1:f1]) +
> r1*(mat1[k1]+mat1[n1-k1+1]))
> trim2=1/((1-2*alpha)*n2)*(sum(__mat2[e2:f2]) +
> r2*(mat2[k2]+mat2[n2-k2+1]))
> trim3=1/((1-2*alpha)*n3)*(sum(__mat3[e3:f3]) +
> r3*(mat3[k3]+mat3[n3-k3+1]))
> trim4=1/((1-2*alpha)*n4)*(sum(__mat4[e4:f4]) +
> r4*(mat4[k4]+mat4[n4-k4+1]))
>
> ## sample winsorized mean
> x1=(1-r1)*mat1[k1+1]+r1*mat1[__k1]
> x2=(1-r2)...
2012 Aug 27
2
Font size in geom_dl (using ggplot2)
Hey everyone,
I am an R-newby... so sorry for bothering you with simple-to-solve
questions;) I have the following issue: trying to add labels to my
scatterplots (with geom_dl in ggplot2). Everything works fine, but after
checking every resource I do not find a way to change the font size of my
labels. I tried size, cex, fontsize at every position... but it always stays
the same.
ggplot()+