You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a reference page for the dataframe APIs.
It's still very barebones at this point because #7819 makes it very
difficult to write snippets for this.
But it is literally infinitely better than what's there right now:
nothing.
- DNM: requires #7817
- Closes#7828
Copy file name to clipboardExpand all lines: docs/content/reference/dataframes.md
+40-1Lines changed: 40 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,43 @@ title: Dataframes
3
3
order: 300
4
4
---
5
5
6
-
Incoming.
6
+
Rerun, at its core, is a database. As such, you can always get your data back in the form of tables (also known as dataframes, or records, or batches...).
7
+
8
+
This can be achieved in three different ways, depending on your needs:
9
+
* using the dataframe API, currently available in [Python](https://ref.rerun.io/docs/python/stable/common/dataframe/) and [Rust](https://docs.rs/rerun/latest/rerun/dataframe/index.html),
10
+
* using the [blueprint API](../concepts/blueprint) to configure a [dataframe view](types/views/dataframe_view) from code,
11
+
* or simply by setting up [dataframe view](types/views/dataframe_view) manually in the UI.
12
+
13
+
This page is meant as a reference to get you up and running with these different solutions as quickly as possible.
14
+
For an in-depth introduction to the dataframe API and the possible workflows it enables, check out [our Getting Started guide](../getting-started/data-out) or one of the accompanying [How-Tos](../howto/dataframe-api).
15
+
16
+
17
+
> We'll need an RRD file to query. Either use one of yours, or grab some of the example ones, e.g.:
0 commit comments