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*.
1301
+
Like [Plot.mapY](#plotmapymap-options), but applies the normalize map method with the given *basis*.
1300
1302
1301
-
#### Plot.windowX(*options*)
1303
+
#### Plot.windowX(*k*, *options*)
1302
1304
1303
1305
```js
1304
-
Plot.windowX({y:"Date", x:"Anomaly", k:24})
1306
+
Plot.windowX(24, {y:"Date", x:"Anomaly"})
1305
1307
```
1306
1308
1307
-
Like [Plot.mapX](#plotmapxmap-options), but applies the window map method with the given *options*.
1309
+
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.
1308
1310
1309
-
#### Plot.windowY(*options*)
1311
+
#### Plot.windowY(*k*, *options*)
1310
1312
1311
1313
```js
1312
-
Plot.windowY({x:"Date", y:"Anomaly", k:24})
1314
+
Plot.windowY(24, {x:"Date", y:"Anomaly"})
1313
1315
```
1314
1316
1315
-
Like [Plot.mapY](#plotmapymap-options), but applies the window map method with the given *options*.
1317
+
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