3 #' Description de EMGrank
5 #' @param Pi Parametre de proportion
6 #' @param Rho Parametre initial de variance renormalisé
7 #' @param mini Nombre minimal d'itérations dans l'algorithme EM
8 #' @param maxi Nombre maximal d'itérations dans l'algorithme EM
9 #' @param X Régresseurs
11 #' @param tau Seuil pour accepter la convergence
12 #' @param rank Vecteur des rangs possibles
15 #' phi : parametre de moyenne renormalisé, calculé par l'EM
16 #' LLF : log vraisemblance associé à cet échantillon, pour les valeurs estimées des paramètres
19 EMGrank <- function(Pi, Rho, mini, maxi, X, Y, tau, rank, fast=TRUE)
24 return (.EMGrank_R(Pi, Rho, mini, maxi, X, Y, tau, rank))
28 n = nrow(X) #nombre d'echantillons
29 p = ncol(X) #nombre de covariables
30 m = ncol(Y) #taille de Y (multivarié)
31 k = length(Pi) #nombre de composantes dans le mélange
33 Pi, Rho, mini, maxi, X, Y, tau, rank,
34 phi=double(p*m*k), LLF=double(1),
39 #helper to always have matrices as arg (TODO: put this elsewhere? improve?)
40 # --> Yes, we should use by-columns storage everywhere... [later!]
41 matricize <- function(X)
44 return (t(as.matrix(X)))
48 # R version - slow but easy to read
49 .EMGrank_R = function(Pi, Rho, mini, maxi, X, Y, tau, rank)
58 phi = array(0, dim=c(p,m,k))
63 Phi = array(0, dim=c(p,m,k))
66 deltaPhiBufferSize = 20
70 while (ite<=mini || (ite<=maxi && sumDeltaPhi>tau))
72 #M step: update for Beta ( and then phi)
75 Z_indice = seq_len(n)[Z==r] #indices where Z == r
76 if (length(Z_indice) == 0)
78 #U,S,V = SVD of (t(Xr)Xr)^{-1} * t(Xr) * Yr
79 s = svd( MASS::ginv(crossprod(matricize(X[Z_indice,]))) %*%
80 crossprod(matricize(X[Z_indice,]),matricize(Y[Z_indice,])) )
82 #Set m-rank(r) singular values to zero, and recompose
83 #best rank(r) approximation of the initial product
84 if(rank[r] < length(S))
85 S[(rank[r]+1):length(S)] = 0
86 phi[,,r] = s$u %*% diag(S) %*% t(s$v) %*% Rho[,,r]
89 #Step E and computation of the loglikelihood
97 dotProduct = tcrossprod(Y[i,]%*%Rho[,,r]-X[i,]%*%phi[,,r])
98 logGamIR = log(Pi[r]) + log(det(Rho[,,r])) - 0.5*dotProduct
99 #Z[i] = index of max (gam[i,])
100 if(logGamIR > maxLogGamIR)
103 maxLogGamIR = logGamIR
105 sumLLF1 = sumLLF1 + exp(logGamIR) / (2*pi)^(m/2)
107 sumLogLLF2 = sumLogLLF2 + log(sumLLF1)
110 LLF = -1/n * sumLogLLF2
112 #update distance parameter to check algorithm convergence (delta(phi, Phi))
113 deltaPhi = c( deltaPhi, max( (abs(phi-Phi)) / (1+abs(phi)) ) ) #TODO: explain?
114 if (length(deltaPhi) > deltaPhiBufferSize)
115 deltaPhi = deltaPhi[2:length(deltaPhi)]
116 sumDeltaPhi = sum(abs(deltaPhi))
118 #update other local variables
122 return(list("phi"=phi, "LLF"=LLF))