Skip to content

Commit 8bb101a

Browse files
[ci skip] update nie path
1 parent 31798d8 commit 8bb101a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/nie.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Dates, DelimitedFiles, Plots, Random, ScoreDrivenModels
22

33
# Define dates and load historical Affluent Natural Energy data
44
dates = collect(Date(1961):Month(1):Date(2000, 12))
5-
y = vec(readdlm("./test/data/nie_northeastern.csv"))
5+
y = vec(readdlm("../test/data/nie_northeastern.csv"))
66
y_train = y[1:400]
77
y_test = y[401:460]
88

@@ -31,4 +31,4 @@ plot(dates[401:460], forec.observation_scenarios, color="grey", w=0.05, label=""
3131
plot!(dates[360:460], y[360:460], label="NIE", color="black", xlabel="Months", ylabel="GWmed", legend=:topright);
3232
plot!(dates[401:460], forec.observation_quantiles, label=["Quantiles" "" ""], color="red", line=:dash)
3333

34-
plot(dates[1:400], y_train, label = "in-sample NIE", ylabel = "GWmed", xlabel = "Months", color = "black")
34+
plot(dates[1:400], y_train, label = "in-sample NIE", ylabel = "GWmed", xlabel = "Months", color = "black")

0 commit comments

Comments
 (0)