-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnalisis_sierranevada_021.Rmd
471 lines (354 loc) · 17.1 KB
/
Analisis_sierranevada_021.Rmd
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
---
title: "Analisis_sierranevada_021"
author: "Almudena Blanco"
date: "September 14, 2016"
output: word_document
---
# Definir directorio de trabajo
Aqui probablemente el codigo te dara problemas, porque queremos definir como directorio de trabajo la carpeta de COPLAS porque los archivos estan ahi. Como este Markdown esta dentro de un Proyecto con su carpeta asociada, R entiende que el directorio es ese (".../Instar/implementaciones/instar_baza/scripts/git_Instar_baza"). Estrictamente hablando deberiamos escribir el codigo de manera que cuando llamemos a un archivo le demos el path apropiado ("...\Instar\calibracion_validacion\fuentes_datos_validacion\COPLAS_PLAGAS"). Pero tambien se puede definir el directorio de manera manual (Session > Set Working Directory > Choose Directory), y asi R si acepta que sea una carpeta distinta a donde esta el proyecto. Por mi las dos opciones valen, la que te sea mas facil :)
He definido el WD de manera manual.
Definir como directorio la carpeta: Instar>implementaciones>instar_baza>scripts>git_Instar_baza>git_Instar_baza
Para poner esta carpeta he copiado los archivos de los que se alimenta este codigo, que son:
- zona_baza.csv (Datos de COPLAS en Baza)
- cortijuela.csv (Datos de COPLAS en Sierra Nevada)
- instar_bz008 (Datos Instar)
- instar_bz006
- instar_sn020
- instar_sn021
# Cargar paquetes
```{r, echo=FALSE}
#install.packages("lubridate")
library(lubridate) # Para las fechas
```
# DATOS INSTAR
## Importar datos INSTAR
- La tabla de datos se construye en excel y se guarda como .csv
- Se abre con procesador de texto, y se comprueba que la fecha está en formato mm-dd-yy
- Se guarda como .txt
Las columnas que constituyen la tabla son: fecha, huevo, L1, L2, crisalida, radiacion, tmax, tmin, tmed y exergia.
```{r}
INSTAR<-read.table("instar_sn021.txt", header=T, sep=",", dec=".")
INSTAR$fecha <-as.Date(INSTAR$fecha, format="%m-%d-%y")#aunque pongo formato mm/dd/yyyy se pone como yyyy-mm-dd
```
## Anadir biociclos al data.frame
```{r, echo=FALSE}
INSTAR$yday <- yday(INSTAR$fecha) # anadimos el dia del anio con el paquete lubridate
INSTAR$year <- year(INSTAR$fecha) # anadimos el anio con el paquete lubridate
INSTAR$biociclo <- NULL
```
```{r, echo=FALSE}
subset_2001 <- subset(INSTAR, INSTAR$year==2001)
for(i in 1:length(subset_2001$yday)){
ifelse(subset_2001$yday[i]<=79,
subset_2001$biociclo[i] <- 1, subset_2001$biociclo[i] <- 2)
}
subset_2002 <- subset(INSTAR, INSTAR$year==2002)
for(i in 1:length(subset_2002$yday)){
ifelse(subset_2002$yday[i]<=79,
subset_2002$biociclo[i] <- 2, subset_2002$biociclo[i] <- 3)
}
subset_2003 <- subset(INSTAR, INSTAR$year==2003)
for(i in 1:length(subset_2003$yday)){
ifelse(subset_2003$yday[i]<=79,
subset_2003$biociclo[i] <- 3, subset_2003$biociclo[i] <- 4)
}
subset_2004 <- subset(INSTAR, INSTAR$year==2004)
for(i in 1:length(subset_2004$yday)){
ifelse(subset_2004$yday[i]<=79,
subset_2004$biociclo[i] <- 4, subset_2004$biociclo[i] <- 5)
}
subset_2005 <- subset(INSTAR, INSTAR$year==2005)
for(i in 1:length(subset_2005$yday)){
ifelse(subset_2005$yday[i]<=79,
subset_2005$biociclo[i] <- 5, subset_2005$biociclo[i] <- 6)
}
subset_2006 <- subset(INSTAR, INSTAR$year==2006)
for(i in 1:length(subset_2006$yday)){
ifelse(subset_2006$yday[i]<=79,
subset_2006$biociclo[i] <- 6, subset_2006$biociclo[i] <- 7)
}
subset_2007 <- subset(INSTAR, INSTAR$year==2007)
for(i in 1:length(subset_2007$yday)){
ifelse(subset_2007$yday[i]<=79,
subset_2007$biociclo[i] <- 7, subset_2007$biociclo[i] <- 8)
}
subset_2008 <- subset(INSTAR, INSTAR$year==2008)
for(i in 1:length(subset_2008$yday)){
ifelse(subset_2008$yday[i]<=79,
subset_2008$biociclo[i] <- 8, subset_2008$biociclo[i] <- 9)
}
subset_2009 <- subset(INSTAR, INSTAR$year==2009)
for(i in 1:length(subset_2009$yday)){
ifelse(subset_2009$yday[i]<=79,
subset_2009$biociclo[i] <- 9, subset_2009$biociclo[i] <- 10)
}
subset_2010 <- subset(INSTAR, INSTAR$year==2010)
for(i in 1:length(subset_2010$yday)){
ifelse(subset_2010$yday[i]<=79,
subset_2010$biociclo[i] <- 10, subset_2010$biociclo[i] <- 11)
}
subset_2011 <- subset(INSTAR, INSTAR$year==2011)
for(i in 1:length(subset_2011$yday)){
ifelse(subset_2011$yday[i]<=79,
subset_2011$biociclo[i] <- 11, subset_2011$biociclo[i] <- 12)
}
subset_2012 <- subset(INSTAR, INSTAR$year==2012)
for(i in 1:length(subset_2012$yday)){
ifelse(subset_2012$yday[i]<=79,
subset_2012$biociclo[i] <- 12, subset_2012$biociclo[i] <- 13)
}
subset_2013 <- subset(INSTAR, INSTAR$year==2013)
for(i in 1:length(subset_2013$yday)){
ifelse(subset_2013$yday[i]<=79,
subset_2013$biociclo[i] <- 13, subset_2013$biociclo[i] <- 14)
}
subset_2014 <- subset(INSTAR, INSTAR$year==2014)
for(i in 1:length(subset_2014$yday)){
ifelse(subset_2014$yday[i]<=79,
subset_2014$biociclo[i] <- 14, subset_2014$biociclo[i] <- 15)
}
INSTAR<- rbind(subset_2002, subset_2003, subset_2004, subset_2005, subset_2006, subset_2007, subset_2008, subset_2009, subset_2010, subset_2011, subset_2012, subset_2013, subset_2014)
#QUITAR BIOCICLO 2 y 15(incompletos)
INSTAR<-INSTAR[!(INSTAR$biociclo=="2"),]
INSTAR<-INSTAR[!(INSTAR$biociclo=="15"),]
# write.csv(INSTAR, "INSTAR_sierranevada021.csv")
```
## Agregacion INSTAR
Media del vigor y sumas (l1, l2, l1+l2, huevos y crisalidas) por biociclo
```{r, echo=FALSE}
sum_l1<- aggregate(x = INSTAR$L1, by=list(biociclo=INSTAR$biociclo), FUN=sum, na.rm=TRUE)
names(sum_l1)[2] <- "sum_l1"
sum_l2<- aggregate(x = INSTAR$L2, by=list(biociclo=INSTAR$biociclo), FUN=sum, na.rm=TRUE)
names(sum_l2)[2] <- "sum_l2"
larvas<-cbind(sum_l1, sum_l2)
larvas<-larvas[-c(3)]
larvas$sum_l1l2=larvas[,2]+larvas[,3]
sum_huevo<- aggregate(x = INSTAR$huevo, by=list(biociclo=INSTAR$biociclo), FUN=sum, na.rm=TRUE)
names(sum_huevo)[2] <- "sum_huevo"
sum_crisalida<- aggregate(x = INSTAR$crisalida, by=list(biociclo=INSTAR$biociclo), FUN=sum, na.rm=TRUE)
names(sum_crisalida)[2] <- "sum_crisalida"
avg_exergia<-aggregate(INSTAR$exergia, by=list(biociclo=INSTAR$biociclo), FUN=mean, na.rm=TRUE)
names(avg_exergia)[2] <- "avg_exergia"
agreg_INSTAR <- cbind(larvas,avg_exergia, sum_crisalida, sum_huevo)
agreg_INSTAR_biociclo <- agreg_INSTAR[ -c(5, 7, 9) ]
#write.csv(agreg_INSTAR_biociclo,"agreg_INSTAR_sn021_biociclo.csv",row.names=FALSE, na="")
```
# DATOS COPLAS
## Importar datos COPLAS
```{r}
COPLAS<-read.csv("cortijuela.csv", header=TRUE, sep="," , na.strings = "NA")
names(COPLAS)[1]<- "RODAL"
```
Activar el rodal necesario para el analisis:
```{r, echo=FALSE}
#rodal<-subset(COPLAS, RODAL == "GR000030")
#rodal<-subset(COPLAS, RODAL == "GR134018")
#rodal<-subset(COPLAS, RODAL == "GR134020")
rodal<-subset(COPLAS, RODAL == "GR134021")
```
```{r, echo=FALSE}
#Eliminar primer y ultimo anio porque en Instar no teneos datos de ese anio completo.
rodal<-rodal[-c(1:10, 23),]
```
## Definir biociclo COPLAS
```{r, echo=FALSE}
rodal$biociclo <- 3:14 #Sierra Nevada
```
##Crear una tabla unica en la que tengamos los datos agregados de Instar y los datos de COPLAS
En esta tabla aparecen los datos de Instar agregados, los Ln de sumL1, sumL2 y sumL1+sumL2, el anio y el grado de infestacion de COPLAS.
```{r, echo=FALSE}
COPLAS_INSTAR<-merge.data.frame(agreg_INSTAR_biociclo, rodal, by.x = "biociclo")
COPLAS_INSTAR<-COPLAS_INSTAR[-c(8)] #Eliminar la columna con el nombre del rodal
COPLAS_INSTAR_omit<-na.omit(COPLAS_INSTAR)#Eliminar filas donde datos de COPLAS sean 'na'
```
# VALIDACION EXTERNA
```{r, echo=FALSE}
library(graphics)
library(ggplot2)
```
## Correlacion [L1, L2, L1+L2 vs. COPLAS]
Ya que es dificil explicar que una variable es dependiente de otra. La mejor forma de validar el modelo (con datos reales) es haciendo una correlacion. Con este analisis sabremos si existe relacion o no entre la variable Instar y COPLAS. Sabremos tambien la intensidad de esta relacion y si es significativa.
Como nuestros datos no siguen una distribucion normal, haremos una correlacion con datos no parametricos: 'Spearman'
Funcion en R (pedir a Antonio este codigo) que plotea la relacion entre ellos con un circulo (cuanto mas relacionados, mas grande el circulo) y si es negativa o positiva. Da tambien el p valor de la correlacion. *"Puedo tener fuerte relacion pero el coef no es diferente de 0, a lo mejor con mas datos si."*"
Deberiamos esperar que haya mas relacion entre coplas y exergia, luego coplas y larvas. Cuando hay relacion negativa es que es inversa. Y como no sabemos quien es x e y, quiere decir que cuando una aumenta, otra disminuye, peor no sabemos quien aumente y quien disminuye.
```{r, echo=FALSE}
library(corrplot)
```
```{r, echo=FALSE}
#Preparamos una tabla con las variables que se van a correlacionar
tabla_cor<-COPLAS_INSTAR_omit[-c(1, 6, 7, 8)]
#Hacemos la correlacion
correlacion<-cor(tabla_cor, method = "spearman")
#Calculo significancia
cor.mtest <- function(mat, conf.level = 0.95){
mat <- as.matrix(mat)
n <- ncol(mat)
p.mat <- lowCI.mat <- uppCI.mat <- matrix(NA, n, n)
diag(p.mat) <- 0
diag(lowCI.mat) <- diag(uppCI.mat) <- 1
for(i in 1:(n-1)){
for(j in (i+1):n){
tmp <- cor.test(mat[,i], mat[,j], conf.level = conf.level)
p.mat[i,j] <- p.mat[j,i] <- tmp$p.value
lowCI.mat[i,j] <- lowCI.mat[j,i] <- tmp$conf.int[1]
uppCI.mat[i,j] <- uppCI.mat[j,i] <- tmp$conf.int[2]
}
}
return(list(p.mat, lowCI.mat, uppCI.mat))
}
res1 <- cor.mtest(tabla_cor,0.95)
#Plot
corrplot(correlacion, p.mat = res1[[1]], sig.level=0.05, method = "number", type = "upper", tl.col = "black", number.cex = 1.5, insig = "n")
```
La correlacion se ha realizado en en los biociclos donde existen datos de COPLAS. Esto nos deja con solo diez biociclos. Muy pocos datos
# VALIDACION INTERNA
##ACP
Autocorrelation plot.
Nos ayudara a saber si existen ciclos dentro de toda la serie temporal.
ESTE ANALISIS SOLO SE HACE CON LOS DATOS DE BAZA Pero voy a probar con los datos de Sierra Nevada
"*Those plots are showing you the correlation of the series with itself, lagged by x time unitscorrelation of the series with itself, lagged by x time units. So imagine taking your time series of length TT, copying it, and deleting the first observation of copy#1 and the last observation of copy#2. Now you have two series of length T for which you calculate a correlation coefficient. This is the value of of the vertical axis at x=1 in your plots. It represents the correlation of the series lagged by one time unit. You go on and do this for all possible time lags xx and this defines the plot*.
*The answer to your question of what is needed to report a pattern is dependent on what pattern you would like to report. But quantitatively speaking, you have exactly what I just described: the correlation coefficient at different lags of the series. You can extract these numerical values by issuing the command acf(x.ts,100)$acf*.
*In terms of what lag to use, this is again a matter of context. It is often the case that there will be specific lags of interest. Say, for example, you may believe the fish species migrates to and from an area every ~30 days. This may lead you to hypothesize a correlation in the time series at lags of 30. In this case, you would have support for your hypothesis*"
"*The blue lines give the values beyond which the autocorrelations are (statistically) significantly different from zero*"
Hay que definir el LAG. lag.max= Lo hemos definido como el numero de biociclos.
**CORRELOGRAMAS INSTAR**
```{r, echo=FALSE}
exergia_ts_y<-ts(agreg_INSTAR_biociclo$avg_exergia, frequency = 1)
exergia_acf_y<-acf(exergia_ts_y, type=c("correlation"), plot=TRUE, lag.max = 12)
L1_ts_y<-ts(agreg_INSTAR_biociclo$sum_l1, frequency = 1)
L1_acf_y<-acf(L1_ts_y, type=c("correlation"), plot=TRUE, lag.max = 12)
L2_ts_y<-ts(agreg_INSTAR_biociclo$sum_l2, frequency = 1)
L2_acf_y<-acf(L2_ts_y, type=c("correlation"), plot=TRUE, lag.max = 12)
huevo_ts_y<-ts(agreg_INSTAR_biociclo$sum_huevo, frequency = 1)
huevo_acf_y<-acf(huevo_ts_y, type=c("correlation"), plot=TRUE, lag.max = 12)
crisalida_ts_y<-ts(agreg_INSTAR_biociclo$sum_crisalida, frequency = 1)
crisalida_acf_y<-acf(crisalida_ts_y, type=c("correlation"), plot=TRUE, lag.max = 12)
```
El dato de un anio esta significativamente correlacionado positivamente con el anio anterior. Es decir, el dato de la variable X del anio 't' depende del anio 'anterior't-1' de formar que cuanto mas alto el valor de la variable en 't-1', mayor es en 'este't' anio.Todos menos crisalidas
**CORRELOGRAMA COPLAS**
```{r, echo=FALSE}
coplas_ts<-ts(COPLAS_INSTAR_omit$GRADO.REVISADO, frequency = 1)
coplas_acf<-acf(coplas_ts, type=c("correlation"), plot=TRUE, lag.max = 10)
```
Se ha tenido que hacer con las tabla con los NA omitidos.. No sale significancia (puede que por pocos datos)
##Analisis de tendencia
Se eligen indicadores de cada variable para calcular su tendencia.
En las variables huevo, L1, L2 y crisalida:
- Fecha del maximo.
- Fecha del primer dia distinto a cero.
- Fecha del ultimo dia distinto a cero.
En la variable exergia:
- Fecha del maximo.
- Fecha del minimo.
H0= no ha tendencia. Si p<0.05 entonces si hay tendencia!
```{r}
ind_feno<-read.csv("indicadores_feno_sn021.csv", header = TRUE, sep = ",", dec = ".", na.strings = "NA")
```
```{r}
library(Kendall)
```
**TENDENCIA EN HUEVOS**
*DIA DE PICO MAXIMO*
```{r, echo=FALSE}
max_huevo <- merge(aggregate(huevo ~ biociclo, data = INSTAR, FUN = max), INSTAR)
max_huevo <- max_huevo[ -c(2:11,13) ] #Quedarme solo con biociclo-dia
names(max_huevo)[2] <- "dia_max_huevo"
tend_max_huevo<-MannKendall(max_huevo$dia_max_huevo)
summary(tend_max_huevo)
plot(max_huevo, ylab="Dia con el maximo numero de huevos", las=1, xlab="Tiempo")
```
*PRIMER DIA*
```{r, echo=FALSE}
tend_ini_huevo<-MannKendall(ind_feno$I_huevo)
summary(tend_ini_huevo)
plot(ind_feno$I_huevo, ylab="Dia del inicio del periodo de presencia de huevos", las=1, xlab="Tiempo")
```
Puede deberse al calentamiento dle modelo..
*ULTIMO DIA*
```{r, echo=FALSE}
tend_fin_huevo<-MannKendall(ind_feno$F_huevo)
summary(tend_fin_huevo)
plot(ind_feno$F_huevo, ylab="Dia del final del periodo de presencia de huevos", las=1, xlab="Tiempo")
```
**TENDENCIA EN L1**
*DIA DE PICO MAXIMO*
```{r, echo=FALSE}
max_l1 <- merge(aggregate(L1 ~ biociclo, data = INSTAR, FUN = max), INSTAR, raw.names=FALSE)
max_l1 <- max_l1[ -c(2:11,13) ] #Quedarme solo con biociclo-dia
names(max_l1)[2] <- "dia_max_L1"
tend_max_l1<-MannKendall(max_l1$dia_max_L1)
summary(tend_max_l1)
plot(max_l1, ylab="Dia con el maximo numero de larvas 1", las= 1, xlab = "Tiempo")
```
*PRIMER DIA*
```{r, echo=FALSE}
tend_ini_L1<-MannKendall(ind_feno$I_l1)
summary(tend_ini_L1)
plot(ind_feno$I_l1, ylab="Dia del inicio del periodo de presencia de larvas 1", las=1, xlab="Tiempo")
```
*ULTIMO DIA*
```{r, echo=FALSE}
tend_fin_L1<-MannKendall(ind_feno$F_l1)
summary(tend_fin_L1)
plot(ind_feno$F_l1, ylab="Dia del final del periodo de presencia de larvas 1", las=1, xlab="Tiempo")
```
**TENDENCIA EN L2**
*DIA DE PICO MAXIMO*
```{r, echo=FALSE}
max_l2 <- merge(aggregate(L2 ~ biociclo, data = INSTAR, FUN = max), INSTAR)
max_l2 <- max_l2[ -c(2:11,13) ] #Quedarme solo con biociclo-dia
names(max_l2)[2] <- "dia_max_L2"
tend_max_l2<-MannKendall(max_l2$dia_max_L2)
summary(tend_max_l2)
plot(max_l2, ylab="Dia con el maximo numero de larvas 2", las= 1, xlab = "Tiempo")
```
*PRIMER DIA*
```{r, echo=FALSE}
tend_ini_L2<-MannKendall(ind_feno$I_l2)
summary(tend_ini_L2)
plot(ind_feno$I_l2, ylab="Dia del inicio del periodo de presencia de larvas 2", las=1, xlab="Tiempo")
```
*ULTIMO DIA*
```{r, echo=FALSE}
tend_fin_L2<-MannKendall(ind_feno$F_l2)
summary(tend_fin_L2)
plot(ind_feno$F_l2, ylab="Dia del final inicio del periodo de presencia de larvas 2", las=1, xlab="Tiempo")
```
**TENDENCIA EN CRISALIDA**
*DIA DE PICO MAXIMO*
```{r, echo=FALSE}
tend_max_crisalida<-MannKendall(ind_feno$max_crisalida)
summary(tend_max_crisalida)
plot(ind_feno$max_crisalida, ylab="Dia con el maximo numero de crisalidas", las=1, xlab="Tiempo")
```
*PRIMER DIA*
```{r, echo=FALSE}
tend_ini_crisalida<-MannKendall(ind_feno$I_crisalida)
summary(tend_ini_crisalida)
plot(ind_feno$I_crisalida, ylab="Dia del inicio del periodo de presencia de crisalidas", las=1, xlab="Tiempo")
```
*ULTIMO DIA*
```{r, echo=FALSE}
tend_fin_crisalida<-MannKendall(ind_feno$F_crisalida)
summary(tend_fin_crisalida)
plot(ind_feno$F_crisalida, ylab="Dia del final del periodo de presencia de crisalidas", las=1, xlab="Tiempo")
```
**TENDENCIA EN EXERGIA**
*DIA DLE PICO MAXIMO*
```{r, echo=FALSE}
max_exergia <- merge(aggregate(exergia ~ biociclo, data = INSTAR, FUN = max), INSTAR)
max_exergia <- max_exergia[ -c(2:11,13) ] #Quedarme solo con biociclo-dia
names(max_exergia)[2] <- "dia_max_exergia"
tend_max_exergia<-MannKendall(max_exergia$dia_max_exergia)
summary(tend_max_exergia)
plot(max_exergia, ylab="Dia con la maxima exergia", las= 1, xlab = "Tiempo")
```
*DIA DEL PICO MINIMO*
```{r, echo=FALSE}
min_exergia <- merge(aggregate(exergia ~ biociclo, data = INSTAR, FUN = min), INSTAR)
min_exergia <- min_exergia[ -c(2:11,13) ] #Quedarme solo con biociclo-dia
names(min_exergia)[2] <- "dia_min_exergia"
tend_min_exergia<-MannKendall(min_exergia$dia_min_exergia)
summary(tend_min_exergia)
plot(min_exergia, ylab="Dia con la minima exergia", las= 1, xlab = "Tiempo")
```