Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Fix typos in Transformations / Pivot and Time Series
Browse files Browse the repository at this point in the history
  • Loading branch information
aglebov committed Jun 22, 2023
1 parent 006bf8f commit f806f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/user-guide/transformations/pivot.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ aggregation.

## Lazy

A polars `LazyFrame` always need to no the schema of a computation statically (before collecting the query).
A polars `LazyFrame` always need to know the schema of a computation statically (before collecting the query).
As a pivot's output schema depends on the data, and it is therefore impossible to determine the schema without
running the query.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/transformations/time-series/rolling.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The rolling groupby, `groupby_rolling`, is another entrance to the `groupby` con
not fixed by a parameter `every` and `period`. In a rolling groupby the windows are not fixed at all! They are determined
by the values in the `index_column`.

So imagine having a time column with the values `{2021-01-06, 20210-01-10}` and a `period="5d"` this would create the following
So imagine having a time column with the values `{2021-01-06, 2021-01-10}` and a `period="5d"` this would create the following
windows:

```text
Expand Down

0 comments on commit f806f74

Please sign in to comment.