Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
firmai committed Jan 25, 2020
1 parent ffe99b5 commit 692c968
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -14,6 +14,7 @@ import pandapy as pp
#### Why PandaPy?

1. Maintains the full functionality and speed of structured NumPy datatype (eg., ```array[col1] + array[col2], or np.log(array[col1]```)
1. The performance claims only hold for small datasets, 1,000-100,000 numpy rows.
2. Provides wrapper functions over NumPy to give you the usability of Pandas (eg., ```pp.group(array, [col1, col2, col2], ['mean', 'std'], ['Adj_Close','Close'])```
3. If you need Pandas for speciality functions, you can easily ```df = pp.pandas(array)``` and back ```array = pp.structured(df)```
4. For simple calculations (i.e, plus, mult, log) PandaPy is 25x - 80x faster than Pandas.
Expand Down

0 comments on commit 692c968

Please sign in to comment.