-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmld.R
136 lines (121 loc) · 5.39 KB
/
mld.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
"mld"<- function (x, orthobas, level, na.action = c("fail", "mean"), plot=TRUE, dfxy = NULL, phylog = NULL, ...)
{
# on fait les vérifications sur x
if (!is.numeric(x))
stop("x is not numeric")
nobs <- length(x)
if (any(is.na(x))) {
if (na.action == "fail")
stop(" missing values in 'x'")
else if (na.action == "mean")
x[is.na(x)] <- mean(stats::na.omit(x))
else stop("unknown method for 'na.action'")
}
# on fait les vérifications sur orthobas (class, dimension, orthogonalité, orthonormalité)
if (!inherits(orthobas, "data.frame")) stop ("'orthobas' is not a data.frame")
if (nrow(orthobas) != nobs) stop ("non convenient dimensions")
if (ncol(orthobas) != (nobs-1)) stop (paste("'orthobas' has",ncol(orthobas),"columns, expected:",nobs-1))
vecpro <- as.matrix(orthobas)
w <- t(vecpro/nobs)%*%vecpro
if (any(abs(diag(w)-1)>1e-07)) {
stop("'orthobas' is not orthonormal for uniform weighting")
}
diag(w) <- 0
if ( any( abs(as.numeric(w))>1e-07) ) stop("'orthobas' is not orthogonal for uniform weighting")
# on calcule les différents vecteurs associés à la décomposition orthonormale de la variable
# si x n'est pas centrée, on la centre pour la pondération uniforme
if (mean(x)!=0)
x <- x-mean(x)
# on calcul les coefficients de corrélation entre la variable et les vecteurs de la base
coeff <- t(vecpro/nobs)%*%as.matrix(x)
# on calcul les vecteurs associés à la décomposition et au facteur level
if (!is.factor(level))
stop("'level' is not a factor")
if (length(level) != (nobs-1))
stop (paste("'level' has",length(level),"values, expected:",nobs-1))
res <- matrix(0, nrow = nobs, ncol = nlevels(level))
coeff <- split(coeff, level)
vecpro <- as.data.frame(t(vecpro))
vecpro <- split(vecpro, level)
for (i in 1:nlevels(level))
res[,i] <- t(vecpro[[i]])%*%as.matrix(coeff[[i]])
res <- as.data.frame(res)
names(res) <- paste("level", levels(level), sep=" ")
# on fait les sorties graphiques si elles sont demandées: c'est pas parfait mais c'est pour donner une idée
if (plot==TRUE){
# rajouter les données circulaires
if (stats::is.ts(x)){
# pour les séries temporelles
u <- attributes(x)$tsp
tab <- stats::ts(res, start = u[1], end = u[2], frequency = u[3])
tab <- stats::ts.union(x, tab)
u <- range(tab)
opar <- graphics::par(mfrow = graphics::par("mfrow"), mar = graphics::par("mar"))
on.exit(graphics::par(opar))
mfrow <- grDevices::n2mfrow(nlevels(level)+1)
graphics::par(mfrow = mfrow)
graphics::par(mar = c(2.5, 5, 1.5, 0.6))
stats::plot.ts(x, ylim = u, ylab = "x", main = "multi-levels decomposition")
for (i in 1:nlevels(level))
graphics::plot(tab[,i+1], ylim = u, ylab = names(res)[i], main = "")
}
if (is.vector(x)){
if (!is.null(dfxy)){
# pour les données 2 D
opar <- graphics::par(mfrow = graphics::par("mfrow"), mar = graphics::par("mar"))
on.exit(graphics::par(opar))
mfrow <- grDevices::n2mfrow(nlevels(level)+1)
graphics::par(mfrow = mfrow)
graphics::par(mar = c(0.6, 2.6, 0.6, 0.6))
s.value(dfxy, x, sub = "x", ...)
for (i in 1:nlevels(level))
if (max((1:(nobs-1))[level == levels(level)[i]])<(nobs/2)){
s.image(dfxy, res[,i])
s.value(dfxy, res[,i], sub = names(res)[i], add.plot=TRUE, ...)
}
else
s.value(dfxy, res[,i], sub = names(res)[i], ...)
}
else {
if (!is.null(phylog)){
# pour les données associées à une phylogénie
tab <- cbind.data.frame(x, res)
row.names(tab) <- names(phylog$leaves)
table.phylog(tab, phylog, ...)
}
else {
# pour les transects
graphics::par(mfrow = c(nlevels(level)+1,1))
graphics::par(mar = c(2, 5, 1.5, 0.6))
u <- range(cbind(x, res))
w <- trunc(u)
w <- c(w[1],0,w[2])
graphics::plot(x, type="h", ylim = u, axes = FALSE, ylab = "x", main = "multi-levels decomposition")
graphics::axis(side = 2, at = w, labels = as.character(w))
for (i in 1:nlevels(level)){
graphics::plot(res[,i], type="h", ylim = u, axes = FALSE, ylab = names(res)[i], main = "")
graphics::axis(side = 2, at = w, labels = as.character(w))
}
v <- seq(0, nobs, by = (nobs/10))
graphics::axis(side=1, at = v, labels = as.character(v))
}
}
}
}
return(res)
}
#############################################################################
haar2level <- function(x){
# cette fonction calcul le facteur level pour lequel l'analyse mld correspond
# à l'analyse mra de la library(waveslim)
# on vérifie que x=2**a
a <- log(length(x))/log(2)
b <- floor(a)
if ((a-b)^2>1e-10) stop ("Haar is not a power of 2")
#on construit les J niveaux de décomposition
u <- LETTERS[1:a]
v <- rep(2,a)**(0:(a-1))
level <- rep(u, v)
level <- as.factor(level)
return(level)
}