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* && \
484
484
s3fs \
485
485
gcsfs \
486
486
kaggle-environments \
487
+ hvplot \
487
488
# geopandas > v0.14.4 breaks learn tools
488
489
geopandas==v0.14.4 \
489
490
"shapely<2" \
Original file line number Diff line number Diff line change 2
2
3
3
import polars as pl
4
4
5
- class TestPolars (unittest .TestCase ):
5
+ class TestPolars (unittest .TestCase ):
6
6
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' )
8
8
9
9
self .assertEqual (100 , len (data ))
10
10
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