-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplot_series.R
60 lines (45 loc) · 1.65 KB
/
plot_series.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
# This script produces the figure which shows the electricity demand for different levels of aggregation.
rm(list = ls())
source("config_paths.R")
source("config_general.R")
source("config_splitting.R")
source("utils.R")
library(parallel)
library(fBasics)
library(msm)
library(gtools)
library(forecast)
library(abind)
library(glmnet)
load(file.path(work.folder, "myinfo.Rdata"))
node_nbkids <- apply(Sagg, 1, sum)
node_order <- sort(node_nbkids, index = T, decreasing = T)$ix
offset <- 48 * 7 * 4
#nb_points <- 48 * 7 * 3
nb_points <- 48 * 7 * 2
nb_points <- 48 * 7
alldemand <- NULL
for(iseries in node_order){
idseries <- aggSeries[iseries]
load(file.path(aggseries.folder, paste("series-", idseries, ".Rdata", sep = "")))
alldemand <- cbind(alldemand, demand[offset + seq(nb_points)])
}
#id <- seq(1, 55, by = 10)
#id <- c(1, 4, 7, 39, 52)
id <- c(1, 7, 39, 50)
alldemand <- alldemand[, node_order[id]]
load(file.path(mymeters.folder, paste("mymeter-", bottomSeries[511], ".Rdata", sep = "")))
alldemand <- cbind(alldemand, demand[seq(nb_points)])
#alldemand <- scale(alldemand)
colnames(alldemand) <- c(node_nbkids[node_order[id]], 1)
savepdf(file.path(results.folder, "demand-bylevel"))
my.ts.panel <- function(x, col = col, bg = bg, pch = pch, type = type, vpos=48*7, ...){
lines(x, col = col, bg = bg, pch = pch, type = type, ...)
#abline(v=vpos)
}
plot.ts(alldemand, panel=my.ts.panel, nc = 1, axes = F, xlab = "", xaxt = "n", main = "")
abline(v = seq(1, 48 * 7, by = 48), lty = 3)
v <- seq(24, 48 * 7, by = 48)
axis(1, labels = abbr.dweek, at=v , tick = F)
endpdf()
# main = paste(node_nbkids[node_order[id]], " aggregated meters", sep = ""),