You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like [Plot.mapY](#plotmapymap-options), but applies the normalize map method with the given *options*.
1275
+
Like [Plot.mapY](#plotmapymap-options), but applies the normalize map method with the given *basis*.
1274
1276
1275
-
#### Plot.windowX(*options*)
1277
+
#### Plot.windowX(*k*, *options*)
1276
1278
1277
1279
```js
1278
-
Plot.windowX({y:"Date", x:"Anomaly", k:24})
1280
+
Plot.windowX(24, {y:"Date", x:"Anomaly"})
1279
1281
```
1280
1282
1281
-
Like [Plot.mapX](#plotmapxmap-options), but applies the window map method with the given *options*.
1283
+
Like [Plot.mapX](#plotmapxmap-options), but applies the window map method with the given window size *k*. If *k* is an object, separate *shift* and *reduce* window options can also be specified.
1282
1284
1283
-
#### Plot.windowY(*options*)
1285
+
#### Plot.windowY(*k*, *options*)
1284
1286
1285
1287
```js
1286
-
Plot.windowY({x:"Date", y:"Anomaly", k:24})
1288
+
Plot.windowY(24, {x:"Date", y:"Anomaly"})
1287
1289
```
1288
1290
1289
-
Like [Plot.mapY](#plotmapymap-options), but applies the window map method with the given *options*.
1291
+
Like [Plot.mapY](#plotmapymap-options), but applies the window map method with the given window size *k*. If *k* is an object, separate *shift* and *reduce* window options can also be specified.
0 commit comments