Skip to content

Commit bb4b829

Browse files
Fix typos
1 parent 81e85db commit bb4b829

8 files changed

Lines changed: 486 additions & 596 deletions

File tree

ROADMAP-TO-4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The constructor for the `Table` object should take some parameters to specify pr
2222
* `.where()`: an iterator for querying with conditions that are evaluated with the internal compute engine.
2323
* `.index()` for indexing a column and getting better performance in queries (desirable, but optional for 4.0).
2424

25-
In particular, it should try to mimic much of the functionality of data-querying libraries such as ``pandas`` (see [this blog](https://datapythonista.me/blog/whats-new-in-pandas-3) for much of the followin). Hence, one should be able to filter rows of the `Table` via querying on multiple columns (accessed via `.` or perhaps ``__getitem__``), with conditions to select rows implemented via `.index`, `.where` like so
25+
In particular, it should try to mimic much of the functionality of data-querying libraries such as ``pandas`` (see [this blog](https://datapythonista.me/blog/whats-new-in-pandas-3) for much of the following). Hence, one should be able to filter rows of the `Table` via querying on multiple columns (accessed via `.` or perhaps ``__getitem__``), with conditions to select rows implemented via `.index`, `.where` like so
2626

2727
```
2828
tbl.where((tbl.property_type == "hotel") & (tbl.country == "us"))

0 commit comments

Comments
 (0)