Skip to content

Commit

Permalink
FExpr/Expr adjustments in the docs (#3347)
Browse files Browse the repository at this point in the history
While #2562 is still WIP, we need to have proper a documentation for both `Expr` and `FExpr` input/return types. This PR fixes it.
  • Loading branch information
oleksiyskononenko authored and sammychoco committed Sep 18, 2022
1 parent 91c9fd9 commit 79ee3e0
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/api/dt/corr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
col1, col2: Expr
col1, col2: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/count.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/countna.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/cov.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
col1, col2: Expr
col1, col2: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/first.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr | iterable
cols: FExpr | iterable
Input columns or an iterable.

return: Expr | ...
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/last.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr | iterable
cols: FExpr | iterable
Input columns or an iterable.

return: Expr | ...
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/max.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/mean.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
cols: FExpr
Input columns.

return: FExpr
return: Expr
f-expression having one row, and the same names and number of columns
as in `cols`. The column stypes are `float32` for
`float32` columns, and `float64` for all the other numeric types.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/median.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/min.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
cols: FExpr
Input columns.

return: FExpr
return: Expr
f-expression having one row and the same names, stypes and number
of columns as in `cols`.

Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/nunique.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/prod.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
cols: FExpr
Input columns.

return: FExpr
return: Expr
f-expression having one row, and the same names and number of columns
as in `cols`. The column stypes are `int64` for
boolean and integer columns, `float32` for `float32` columns
Expand Down
4 changes: 2 additions & 2 deletions docs/api/dt/rowlast.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
return: FExpr
f-expression consisting of one column and the same number
of rows as in `cols`.

Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/sd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
cols: FExpr
Input columns.

return: FExpr
return: Expr
f-expression having one row, and the same names and number of columns
as in `cols`. The column stypes are `float32` for
`float32` columns, and `float64` for all the other numeric types.
Expand Down
2 changes: 1 addition & 1 deletion docs/api/dt/sum.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Parameters
----------
cols: Expr
cols: FExpr
Input columns.

return: Expr
Expand Down

0 comments on commit 79ee3e0

Please sign in to comment.