Skip to content

Commit

Permalink
update docs for DataFrames and Installation
Browse files Browse the repository at this point in the history
  • Loading branch information
gschoeni committed Dec 9, 2022
1 parent 5fffd2a commit 5f9cc1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions DataFrames.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,14 @@ shape: (10000, 2)

Oxen has some powerful filter commands built into the CLI. You can quickly filter data down based on a expression involving a column name, an operation, and a row value.

Supported operations: =, !=, >, <, <= , >=
Supported filter operations: ==, !=, >, <, <= , >=

Supported logical operations: &&, ||

Supported row dtypes: str, i32, i64, f32, f64

```bash
$ oxen df annotations/data.csv --filter 'label=dog'
$ oxen df annotations/data.csv --filter 'label == dog && height >= 200'

shape: (5356, 6)
┌─────────────────────────┬───────┬────────┬────────┬───────┬────────┐
Expand Down
8 changes: 4 additions & 4 deletions Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ $ brew install oxen
### Debian

```bash
$ wget https://github.com/Oxen-AI/oxen-release/releases/download/v0.2.6/oxen-0.2.6-1-any.deb
$ sudo dpkg -i oxen-0.2.6-1-any.deb
$ wget https://github.com/Oxen-AI/oxen-release/releases/download/v0.2.7/oxen-0.2.7-1-any.deb
$ sudo dpkg -i oxen-0.2.7-1-any.deb
```

## Oxen Server
Expand All @@ -32,8 +32,8 @@ $ brew install oxen-server
### Debian

```bash
$ wget https://github.com/Oxen-AI/oxen-release/releases/download/v0.2.6/oxen-server-0.2.6-1-any.deb
$ sudo dpkg -i oxen-server-0.2.6-1-any.deb
$ wget https://github.com/Oxen-AI/oxen-release/releases/download/v0.2.7/oxen-server-0.2.7-1-any.deb
$ sudo dpkg -i oxen-server-0.2.7-1-any.deb
```

To get up and running using the client and server, you can follow the [getting started docs](README.md).

0 comments on commit 5f9cc1c

Please sign in to comment.