We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d43de5d commit 33f3a65Copy full SHA for 33f3a65
core/src/main/java/tech/tablesaw/columns/Column.java
@@ -164,6 +164,10 @@ default RollingColumn rolling(final int windowSize) {
164
return new RollingColumn(this, windowSize);
165
}
166
167
+ /**
168
+ * @param windowSize size of the rolling window to use
169
+ * @param center set the operation result at the center of the window or at the end of it
170
+ */
171
default RollingColumn rolling(final int windowSize, final boolean center) {
172
return new RollingColumn(this, windowSize, center);
173
0 commit comments