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.
2 parents b1d1573 + 8aa8c0d commit 069db0aCopy full SHA for 069db0a
Dockerfile.tmpl
@@ -190,6 +190,7 @@ RUN pip install pysal \
190
seaborn python-dateutil dask python-igraph \
191
pyyaml joblib husl geopy mne pyshp \
192
pandas \
193
+ polars \
194
flax && \
195
# Install h2o from source.
196
# Use `conda install -c h2oai h2o` once Python 3.7 version is released to conda.
tests/test_polars.py
@@ -0,0 +1,10 @@
1
+import unittest
2
+
3
+import polars as pl
4
5
+class TestPolars(unittest.TestCase):
6
+ def test_read_csv(self):
7
+ data = pl.read_csv("/input/tests/data/train.csv")
8
9
+ self.assertEqual(100, len(data))
10
0 commit comments