We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f11d85 commit d26d8a0Copy full SHA for d26d8a0
README.md
@@ -35,8 +35,10 @@ There are three steps to writing dataframe-agnostic code using Narwhals:
35
3. use `narwhals.to_native` to return an object to the user in its original
36
dataframe flavour. For example:
37
38
- - if you started with pandas, you'll get pandas back
39
- - if you started with Polars, you'll get Polars back
+ - if you started with a pandas DataFrame, you'll get a pandas DataFrame back
+ - if you started with a Polars DataFrame, you'll get a Polars DataFrame back
40
+ - if you started with a Polars LazyFrame, you'll get a Polars LazyFrame back (unless
41
+ you called `.collect`!)
42
43
## Example
44
0 commit comments