@@ -1156,9 +1156,9 @@ The Plot.normalizeX and Plot.normalizeY transforms take an additional **basis**
1156
1156
* * extent* - the minimum is mapped to zero, and the maximum to one
1157
1157
* a function to be passed an array of values, returning the desired basis
1158
1158
1159
- The Plot.windowX and Plot.windowY transforms take additional options:
1159
+ The Plot.windowX and Plot.windowY transforms likewise take additional options:
1160
1160
1161
- * ** k** - the window size
1161
+ * ** k** - the window size (the number of elements in the window)
1162
1162
* ** shift** - how to align the window: * centered* , * leading* , or * trailing*
1163
1163
* ** reduce** - the aggregation method (window reducer)
1164
1164
@@ -1204,31 +1204,31 @@ Equivalent to Plot.map({y: *map*, y1: *map*, y2: *map*}, *options*), but ignores
1204
1204
Plot .normalizeX ({y: " Date" , x: " Close" , stroke: " Symbol" })
1205
1205
```
1206
1206
1207
- Similar to [ Plot.mapX] ( #plotmapxmap-options ) , …
1207
+ Similar to [ Plot.mapX] ( #plotmapxmap-options ) , but applies the normalize map method with the given * options * .
1208
1208
1209
1209
#### Plot.normalizeY(* options* )
1210
1210
1211
1211
``` js
1212
1212
Plot .normalizeY ({x: " Date" , y: " Close" , stroke: " Symbol" })
1213
1213
```
1214
1214
1215
- Similar to [ Plot.mapY] ( #plotmapymap-options ) , …
1215
+ Similar to [ Plot.mapY] ( #plotmapymap-options ) , but applies the normalize map method with the given * options * .
1216
1216
1217
1217
#### Plot.windowX(* options* )
1218
1218
1219
1219
``` js
1220
1220
Plot .windowX ({y: " Date" , x: " Anomaly" , k: 24 })
1221
1221
```
1222
1222
1223
- Similar to [ Plot.mapX] ( #plotmapxmap-options ) , …
1223
+ Similar to [ Plot.mapX] ( #plotmapxmap-options ) , but applies the window map method with the given * options * .
1224
1224
1225
1225
#### Plot.windowY(* options* )
1226
1226
1227
1227
``` js
1228
1228
Plot .windowY ({x: " Date" , y: " Anomaly" , k: 24 })
1229
1229
```
1230
1230
1231
- Similar to [ Plot.mapY] ( #plotmapymap-options ) , …
1231
+ Similar to [ Plot.mapY] ( #plotmapymap-options ) , but applies the window map method with the given * options * .
1232
1232
1233
1233
### Select
1234
1234
0 commit comments