@@ -81,11 +81,10 @@ def _blockm(
8181 e = "find" ,
8282 f = "coltypes" ,
8383 h = "header" ,
84- i = "incols" ,
8584 o = "outcols" ,
8685 w = "wrap" ,
8786)
88- @kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
87+ @kwargs_to_strings (I = "sequence" , o = "sequence_comma" )
8988def blockmean (
9089 data : PathLike | TableLike | None = None ,
9190 x = None ,
@@ -97,6 +96,7 @@ def blockmean(
9796 registration : Literal ["gridline" , "pixel" ] | bool = False ,
9897 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
9998 | bool = False ,
99+ incols : int | str | Sequence [int | str ] | None = None ,
100100 ** kwargs ,
101101) -> pd .DataFrame | np .ndarray | None :
102102 r"""
@@ -116,6 +116,7 @@ def blockmean(
116116 {aliases}
117117 - R = region
118118 - V = verbose
119+ - i = incols
119120 - r = registration
120121
121122 Parameters
@@ -171,6 +172,7 @@ def blockmean(
171172 aliasdict = AliasSystem ().add_common (
172173 R = region ,
173174 V = verbose ,
175+ i = incols ,
174176 r = registration ,
175177 )
176178 aliasdict .merge (kwargs )
@@ -196,11 +198,10 @@ def blockmean(
196198 e = "find" ,
197199 f = "coltypes" ,
198200 h = "header" ,
199- i = "incols" ,
200201 o = "outcols" ,
201202 w = "wrap" ,
202203)
203- @kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
204+ @kwargs_to_strings (I = "sequence" , o = "sequence_comma" )
204205def blockmedian (
205206 data : PathLike | TableLike | None = None ,
206207 x = None ,
@@ -212,6 +213,7 @@ def blockmedian(
212213 registration : Literal ["gridline" , "pixel" ] | bool = False ,
213214 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
214215 | bool = False ,
216+ incols : int | str | Sequence [int | str ] | None = None ,
215217 ** kwargs ,
216218) -> pd .DataFrame | np .ndarray | None :
217219 r"""
@@ -231,6 +233,7 @@ def blockmedian(
231233 {aliases}
232234 - R = region
233235 - V = verbose
236+ - i = incols
234237 - r = registration
235238
236239 Parameters
@@ -280,6 +283,7 @@ def blockmedian(
280283 aliasdict = AliasSystem ().add_common (
281284 R = region ,
282285 V = verbose ,
286+ i = incols ,
283287 r = registration ,
284288 )
285289 aliasdict .merge (kwargs )
@@ -305,11 +309,10 @@ def blockmedian(
305309 e = "find" ,
306310 f = "coltypes" ,
307311 h = "header" ,
308- i = "incols" ,
309312 o = "outcols" ,
310313 w = "wrap" ,
311314)
312- @kwargs_to_strings (I = "sequence" , i = "sequence_comma" , o = "sequence_comma" )
315+ @kwargs_to_strings (I = "sequence" , o = "sequence_comma" )
313316def blockmode (
314317 data : PathLike | TableLike | None = None ,
315318 x = None ,
@@ -321,6 +324,7 @@ def blockmode(
321324 registration : Literal ["gridline" , "pixel" ] | bool = False ,
322325 verbose : Literal ["quiet" , "error" , "warning" , "timing" , "info" , "compat" , "debug" ]
323326 | bool = False ,
327+ incols : int | str | Sequence [int | str ] | None = None ,
324328 ** kwargs ,
325329) -> pd .DataFrame | np .ndarray | None :
326330 r"""
@@ -340,6 +344,7 @@ def blockmode(
340344 {aliases}
341345 - R = region
342346 - V = verbose
347+ - i = incols
343348 - r = registration
344349
345350 Parameters
@@ -387,6 +392,7 @@ def blockmode(
387392 aliasdict = AliasSystem ().add_common (
388393 R = region ,
389394 V = verbose ,
395+ i = incols ,
390396 r = registration ,
391397 )
392398 aliasdict .merge (kwargs )
0 commit comments