-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(python): Fix various typos, grammar and formatting in docstrings and user guide #13506
Conversation
@@ -140,7 +140,7 @@ class LazyFrame: | |||
Two-dimensional data in various forms; dict input must contain Sequences, | |||
Generators, or a `range`. Sequence may contain Series or other Sequences. | |||
schema : Sequence of str, (str,DataType) pairs, or a {str:DataType,} dict | |||
The DataFrame schema may be declared in several ways: | |||
The LazyFrame schema may be declared in several ways: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Techincally, you are declaring a DataFrame
schema when initialising a LazyFrame
through this class, however I think this update reduces potential confusion to the reader.
This is a great collection of fixes - well spotted!✌️ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks!
Changes include
top_k
/bottom_k
LazyFrame
being aDataFrame
and vice-versaI did notice a few more references to a
LazyFrame
being aDataFrame
and vice-versa (for example inLazyFrame.join
), but will leave for another PR to keep the size manageable.