7 ms·
Data frames for Python (and some other stuff): https://github.com/otsaloma/dataiter https://github.com/otsaloma/dataiter Comparison against dplyr and Pandas f
by otsaloma 4y ago
Data frames for Python (and some other stuff):
https://github.com/otsaloma/dataiter https://github.com/otsaloma/dataiter
Comparison against dplyr and Pandas for a quick overview:
https://dataiter.readthedocs.io/en/latest/_static/comparison.html https://dataiter.readthedocs.io/en/latest/_static/comparison...
- Kalanos 4y agoI've always wanted to make a simpler API called RowCol. why `.slice` ?
- otsaloma 4y agoThe data frame is a Python dict and I consider that a feature so that users know how to e.g. loop through columns with .items() etc. That then means that bracket notation is reserved for column names only (i.e. dict keys). So, that's why a separate function is needed.