3 #' Description de EMGrank
6 #' @param Pi Parametre de proportion
7 #' @param Rho Parametre initial de variance renormalisé
8 #' @param mini Nombre minimal d'itérations dans l'algorithme EM
9 #' @param maxi Nombre maximal d'itérations dans l'algorithme EM
10 #' @param X Régresseurs
12 #' @param tau Seuil pour accepter la convergence
13 #' @param rank Vecteur des rangs possibles
16 #' phi : parametre de moyenne renormalisé, calculé par l'EM
17 #' LLF : log vraisemblance associé à cet échantillon, pour les valeurs estimées des paramètres
20 EMGrank <- function(Pi, Rho, mini, maxi, X, Y, tau, rank, fast=TRUE)
25 return (.EMGrank_R(Pi, Rho, mini, maxi, X, Y, tau, rank))
29 n = nrow(X) #nombre d'echantillons
30 p = ncol(X) #nombre de covariables
31 m = ncol(Y) #taille de Y (multivarié)
32 k = length(Pi) #nombre de composantes dans le mélange
34 Pi, Rho, mini, maxi, X, Y, tau, rank,
35 phi=double(p*m*k), LLF=double(1),
40 #helper to always have matrices as arg (TODO: put this elsewhere? improve?)
41 # --> Yes, we should use by-columns storage everywhere... [later!]
42 matricize <- function(X)
45 return (t(as.matrix(X)))
49 # R version - slow but easy to read
50 .EMGrank_R = function(Pi, Rho, mini, maxi, X, Y, tau, rank)
59 phi = array(0, dim=c(p,m,k))
64 Phi = array(0, dim=c(p,m,k))
67 deltaPhiBufferSize = 20
71 while (ite<=mini || (ite<=maxi && sumDeltaPhi>tau))
73 #M step: Mise à jour de Beta (et donc phi)
76 Z_indice = seq_len(n)[Z==r] #indices où Z == r
77 if (length(Z_indice) == 0)
79 #U,S,V = SVD of (t(Xr)Xr)^{-1} * t(Xr) * Yr
80 s = svd( ginv(crossprod(matricize(X[Z_indice,]))) %*%
81 crossprod(matricize(X[Z_indice,]),matricize(Y[Z_indice,])) )
83 #Set m-rank(r) singular values to zero, and recompose
84 #best rank(r) approximation of the initial product
85 if(rank[r] < length(S))
86 S[(rank[r]+1):length(S)] = 0
87 phi[,,r] = s$u %*% diag(S) %*% t(s$v) %*% Rho[,,r]
90 #Etape E et calcul de LLF
98 dotProduct = tcrossprod(Y[i,]%*%Rho[,,r]-X[i,]%*%phi[,,r])
99 logGamIR = log(Pi[r]) + log(det(Rho[,,r])) - 0.5*dotProduct
100 #Z[i] = index of max (gam[i,])
101 if(logGamIR > maxLogGamIR)
104 maxLogGamIR = logGamIR
106 sumLLF1 = sumLLF1 + exp(logGamIR) / (2*pi)^(m/2)
108 sumLogLLF2 = sumLogLLF2 + log(sumLLF1)
111 LLF = -1/n * sumLogLLF2
113 #update distance parameter to check algorithm convergence (delta(phi, Phi))
114 deltaPhi = c( deltaPhi, max( (abs(phi-Phi)) / (1+abs(phi)) ) ) #TODO: explain?
115 if (length(deltaPhi) > deltaPhiBufferSize)
116 deltaPhi = deltaPhi[2:length(deltaPhi)]
117 sumDeltaPhi = sum(abs(deltaPhi))
119 #update other local variables
123 return(list("phi"=phi, "LLF"=LLF))