Commit 57db1ed
fix(eda):type error for npartitions
Using `np.ceil` return a float, which triggers errors downstream.
```python
In [5]: import numpy as np
In [6]: np.ceil(1.0001)
Out[6]: 2.0
```
For a reproducible error example, see this question: https://stackoverflow.com/questions/72453608/dataprep-eda-typeerror-please-provide-npartitions-as-an-int-or-possibly-as-non.1 parent 0686ff5 commit 57db1ed
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
69 | 70 | | |
70 | 71 | | |
71 | 72 | | |
72 | | - | |
| 73 | + | |
73 | 74 | | |
74 | 75 | | |
75 | 76 | | |
| |||
0 commit comments