Skip to content

Commit 74ace37

Browse files
committed
DOC: Fix API Reference numbering
1 parent 6753db4 commit 74ace37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ Replace `YOUR_ACCESS_KEY` with an actual access key, then run this program.
6565

6666
This uses `.replay()` to access the entire block of data
6767
and dispatch each data event to an event handler. You can also use
68-
`.to_df()` or `.to_list()` to cast the data into a Pandas DataFrame or list:
68+
`.to_df()` or `.to_ndarray()` to cast the data into a Pandas `DataFrame` or numpy `ndarray`:
6969

7070
```python
7171
df = data.to_df(pretty_ts=True, pretty_px=True) # to DataFrame, with pretty formatting
72-
array = data.to_ndarray() # to array
72+
array = data.to_ndarray() # to ndarray
7373
```
7474

7575
Note that the access key was also passed as a parameter, which is

0 commit comments

Comments
 (0)