# (1) set.seed(1234) n=30 X=rnorm(n) k=1 # nejprve definujeme Huberovu psi funkci psi=function(x){ psi=rep(0,length(x)) for (i in 1:length(x)){ if (abs(x[i]) xq[2]]<-xq[2] return(mean(x)) } # vlastni funkce pro vypocet Hodgesova - Lehmannova odhadu HL=function(x){ n=length(x) Y=rep(0,n*(n+1)/2) k=1 for (i in 1:n){ for (j in i: n){ Y[k]=(x[i]+x[j])/2 k=k+1 }} return(median(Y)) }