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.
1 parent 6d08285 commit 411e2f5Copy full SHA for 411e2f5
Dockerfile
@@ -365,6 +365,7 @@ RUN pip install bleach && \
365
366
RUN pip install flashtext && \
367
pip install wandb && \
368
+ pip install vaex && \
369
pip install marisa-trie && \
370
pip install pyemd && \
371
pip install pyupset && \
tests/test_vaex.py
@@ -0,0 +1,10 @@
1
+import unittest
2
+
3
+import vaex
4
5
+class TestVaex(unittest.TestCase):
6
+ def test_read_csv(self):
7
+ df = vaex.read_csv("/input/tests/data/train.csv")
8
9
+ self.assertEqual((100, 785), df.shape)
10
+ self.assertEqual(10, df['label'].nunique())
0 commit comments