Skip to content

Commit

Permalink
Typo: pandas -> polars (#3434)
Browse files Browse the repository at this point in the history
## 📝 Summary

Fix typos: `pandas` -> `polars`

## 🔍 Description of Changes

Fix typos where `import polars` is incorrectly written as `import
pandas`

## 📋 Checklist

- [x] I have read the [contributor
guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md).
- [ ] For large changes, or changes that affect the public API: this
change was discussed or approved through an issue, on
[Discord](https://marimo.io/discord?ref=pr), or the community
[discussions](https://github.com/marimo-team/marimo/discussions) (Please
provide a link if applicable).
- [ ] I have added tests for the changes made.
- [ ] I have run the code and verified that it works as expected.

## 📜 Reviewers

<!--
Tag potential reviewers from the community or maintainers who might be
interested in reviewing this pull request.

Your PR will be reviewed more quickly if you can figure out the right
person to tag with @ -->

@akshayka OR @mscolnick
  • Loading branch information
ushuz authored Jan 14, 2025
1 parent f231ff5 commit b8a0442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/working_with_data/dataframes.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ transformed_df.value
```python
# Cell 1
import marimo as mo
import pandas as pl
import polars as pl

df = pl.DataFrame({"person": ["Alice", "Bob", "Charlie"], "age": [20, 30, 40]})
transformed_df = mo.ui.dataframe(df)
Expand Down Expand Up @@ -229,7 +229,7 @@ table.value
```python
# Cell 1 - display a dataframe
import marimo as mo
import pandas as pl
import polars as pl

df = pl.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]})
table = mo.ui.table(df, selection="multi")
Expand Down

0 comments on commit b8a0442

Please sign in to comment.