-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollingfunc.cpp
157 lines (124 loc) · 3.76 KB
/
rollingfunc.cpp
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
#include <Rcpp.h>
using namespace Rcpp;
#include <algorithm> // for std::max_element
// [[Rcpp::plugins(cpp11)]]
// The superclass "Rolling"
template <typename T>
class Rolling {
protected:
T data;
int lag;
public:
Rolling(T d, int l) : data(d), lag(l) {}
virtual NumericVector compute() = 0;
// This method initializes the first "lag" values as NA
NumericVector initialize_output() {
int n = this->data.size();
NumericVector out(n);
// Initialize the first j values as NA
for (int i = 0; i < this->lag; i++) {
out[i] = NA_REAL;
}
return out;
}
};
// The subclass "RollingSum"
template <typename T>
class RollingSum : public Rolling<T> {
public:
RollingSum(T d, int l) : Rolling<T>(d, l) {}
NumericVector compute() override {
// Use the "initialize_output" method from the superclass
NumericVector out = this->initialize_output();
// Declare and initialize the n variable inside the compute method
int n = this->data.size();
// Compute the rolling sum
double sum = 0;
for (int i = this->lag; i < n; i++) {
sum += this->data[i-this->lag];
out[i] = sum;
}
return out;
}
};
// The subclass "RollingAverage"
template <typename T>
class RollingAverage : public Rolling<T> {
public:
RollingAverage(T d, int l) : Rolling<T>(d, l) {}
NumericVector compute() override {
// Use the "initialize_output" method from the superclass
NumericVector out = this->initialize_output();
// Declare and initialize the n variable inside the compute method
int n = this->data.size();
// Compute the rolling average
double sum = 0;
for (int i = this->lag; i < n; i++) {
sum += this->data[i-this->lag];
out[i] = sum / ((i+1)-this->lag);
}
return out;
}
};
// The subclass "RollingMax"
template <typename T>
class RollingMax : public Rolling<T> {
public:
RollingMax(T d, int l) : Rolling<T>(d, l) {}
NumericVector compute() override {
// Use the "initialize_output" method from the superclass
NumericVector out = this->initialize_output();
// Declare and initialize the n variable inside the compute method
int n = this->data.size();
// Compute the rolling max
// Initialize the rolling max to the first value in x
double max = this->data[0];
// Compute the rolling max
for (int i = this->lag; i < n; i++) {
max = std::max(max, this->data[i-this->lag]);
out[i] = max;
}
return out;
}
};
// The subclass "RollingMin"
template <typename T>
class RollingMin : public Rolling<T> {
public:
RollingMin(T d, int l) : Rolling<T>(d, l) {}
NumericVector compute() override {
// Use the "initialize_output" method from the superclass
NumericVector out = this->initialize_output();
// Declare and initialize the n variable inside the compute method
int n = this->data.size();
// Compute the rolling min
// Initialize the rolling min to the first value in x
double min = this->data[0];
// Compute the rolling min
for (int i = this->lag; i < n; i++) {
min = std::min(min, this->data[i-this->lag]);
out[i] = min;
}
return out;
}
};
// [[Rcpp::export]]
NumericVector rollingsum(NumericVector x, int lag) {
RollingSum<NumericVector> s(x, lag);
return s.compute();
}
// [[Rcpp::export]]
NumericVector rollingaverage(NumericVector x, int lag) {
RollingAverage<NumericVector> s(x, lag);
return s.compute();
}
// [[Rcpp::export]]
NumericVector rollingmax(NumericVector x, int lag) {
RollingMax<NumericVector> s(x, lag);
return s.compute();
}
// [[Rcpp::export]]
NumericVector rollingmin(NumericVector x, int lag) {
RollingMin<NumericVector> s(x, lag);
return s.compute();
}