Skip to content

Commit

Permalink
revert: don't filter out null in simpsons dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
juba committed Aug 28, 2024
1 parent e4640cc commit 530a4ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ui/tests/notebooks/complex_plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"\n",
"import polars as pl\n",
"\n",
"simpsons = pl.read_csv(\"data/simpsons.csv\").filter(pl.col(\"imdb_rating\").is_not_null())\n",
"simpsons = pl.read_csv(\"data/simpsons.csv\")\n",
"penguins = pl.read_csv(\"data/penguins.csv\")\n",
"metros = pl.read_csv(\"data/metros.csv\")\n",
"\n",
Expand Down Expand Up @@ -253,7 +253,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.10"
"version": "3.11.9"
},
"orig_nbformat": 4
},
Expand Down

0 comments on commit 530a4ad

Please sign in to comment.