InterviewSolution
Saved Bookmarks
| 1. |
Is PySpark faster than pandas? |
|
Answer» PySpark SUPPORTS parallel execution of statements in a DISTRIBUTED environment, i.e on different cores and different machines which are not PRESENT in PANDAS. This is why PySpark is faster than pandas. |
|