Skip to content

Commit 68067f5

Browse files
author
sjoshistrats
authored
Fix doc.
1 parent 517c997 commit 68067f5

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1-
[![<sjoshistrats>](https://circleci.com/gh/sjoshistrats/fastgrouper.svg?style=svg)](https://app.circleci.com/pipelines/github/sjoshistrats/fastgrouper?branch=master)
1+
[![<sjoshistrats>](https://circleci.com/gh/sjoshistrats/fastgrouper.svg?style=shield)](https://app.circleci.com/pipelines/github/sjoshistrats/fastgrouper?branch=master)
22

33
# fastgrouper
44
Allows for fast groupby-apply operations, in python.
5+
6+
# Install
7+
8+
Users can install the package from PyPI via:
9+
10+
```shell
11+
python -m pip install fastgrouper
12+
```
513

614
# Usage
715

816
Use the `arr` interface, for numpy array focused applications.
917

1018
```python
1119
import numpy as np
12-
import fastgrouper.li
20+
import fastgrouper.arr
1321

1422
def baz(x, y):
1523
return np.mean(x + y) - 3

0 commit comments

Comments
 (0)