Skip to content

Commit

Permalink
added simple table images.
Browse files Browse the repository at this point in the history
  • Loading branch information
djl11 committed Feb 20, 2025
1 parent 6a771b2 commit 25caf6f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions interfaces/tables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: 'Tables'

As you might expect, tables are 2D grids of your data, making it easy to view, manipulate and organize whatever you've logged.

The rows each represent a different log, and the columns represent the different fields (parameters and entries) of the log.
The **rows** each represent a different **log**, and the **columns** represent the different **fields** (parameters and entries) of the log.

```python
import unify
Expand All @@ -14,8 +14,11 @@ unify.log(x=1, y={"b": [4, 5, 6]}, msg="goodbye", score=0.456)

This will be shown as:

IMG
<img className="block dark:hidden" width="100%" src="https://raw.githubusercontent.com/unifyai/unifyai.github.io/refs/heads/main/img/externally_linked/simple_table_light.png"/>
<img className="hidden dark:block" width="100%" src="https://raw.githubusercontent.com/unifyai/unifyai.github.io/refs/heads/main/img/externally_linked/simple_table_dark.png"/>

Note that the **most recent** log is always shown at the top of the table,
with row numbers in an ascending manner from top to bottom.
Columns are all **strongly typed**, and you can see the type by hovering over the column header.

## Column Manipulation
Expand Down

0 comments on commit 25caf6f

Please sign in to comment.