You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ An easy to use library to speed up computation (by parallelizing on multi CPUs)
50
50
```
51
51
52
52
## Examples
53
-
An example of each API is available in [examples.ipynb](https://github.com/nalepae/pandarallel/blob/master/examples.ipynb).
53
+
An example of each API is available [here](https://github.com/nalepae/pandarallel/blob/master/docs/examples.ipynb).
54
54
55
55
## Benchmark
56
-
For the `Dataframe.apply` example in [examples.ipynb](https://github.com/nalepae/pandarallel/blob/master/examples.ipynb), here is the comparative benchmark with "standard" `apply` and with `progress_apply` (error bars are too small to be displayed).
56
+
For the `Dataframe.apply` example [here](https://github.com/nalepae/pandarallel/blob/master/docs/examples.ipynb), here is the comparative benchmark with "standard" `apply` and with `parallel_apply` (error bars are too small to be displayed).
57
57
Computer used for this benchmark:
58
58
- OS: Linux Ubuntu 16.04
59
59
- Hardware: Intel Core i7 @ 3.40 GHz (4 cores)
@@ -65,16 +65,18 @@ An easy to use library to speed up computation (by parallelizing on multi CPUs)
65
65
66
66
67
67
## API
68
-
First, you have to import `pandarallel` (don't forget the double _l_):
68
+
First, you have to import `pandarallel`:
69
69
```python
70
70
from pandarallel import pandarallel
71
71
```
72
72
73
-
| Without parallelisation | With parallelisation |
0 commit comments