File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -484,6 +484,7 @@ RUN rm -rf /opt/conda/lib/python3.10/site-packages/numpy* && \
484484 s3fs \
485485 gcsfs \
486486 kaggle-environments \
487+ hvplot \
487488 # geopandas > v0.14.4 breaks learn tools
488489 geopandas==v0.14.4 \
489490 "shapely<2" \
Original file line number Diff line number Diff line change 22
33import polars as pl
44
5- class TestPolars (unittest .TestCase ):
5+ class TestPolars (unittest .TestCase ):
66 def test_read_csv (self ):
7- data = pl .read_csv (" /input/tests/data/train.csv" )
7+ data = pl .read_csv (' /input/tests/data/train.csv' )
88
99 self .assertEqual (100 , len (data ))
1010
11+ def test_plot (self ):
12+ # This relies on the hvplot package
13+ data = pl .read_csv ('/input/tests/data/train.csv' )
14+ data .plot .line ()
15+
You can’t perform that action at this time.
0 commit comments