Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: "send data in, query data out" #7908

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/getting-started/data-in.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Get data into Rerun
title: Send data to Rerun
order: 400
---

This section shows you how to get data into Rerun from either your running applications or existing files.
This section shows you how to send data to Rerun from either your running applications or existing files.

- Streaming data from your code
- Sending data from your code
- [C++](./data-in/cpp.md)
- [Python](./data-in/python.md)
- [Rust](./data-in/rust.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/content/getting-started/data-in/cpp.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Stream from C++
title: Send from C++
order: 1
---

Expand Down
2 changes: 1 addition & 1 deletion docs/content/getting-started/data-in/python.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Stream from Python
title: Send from Python
order: 2
---

Expand Down
2 changes: 1 addition & 1 deletion docs/content/getting-started/data-in/rust.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Stream from Rust
title: Send from Rust
order: 3
---

Expand Down
2 changes: 1 addition & 1 deletion docs/content/getting-started/data-out.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Get data out of Rerun
title: Query data out of Rerun
order: 450
---

Expand Down
4 changes: 2 additions & 2 deletions docs/content/howto/get-data-out.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Get data out of Rerun
order: 0
title: Query data out of Rerun
order: 100
---

Rerun comes with a Dataframe API, which enables getting data out of Rerun from code. This page provides an overview of the API, as well as recipes to load the data in popular packages such as [Pandas](https://pandas.pydata.org), [Polars](https://pola.rs), and [DuckDB](https://duckdb.org).
Expand Down
4 changes: 2 additions & 2 deletions docs/content/howto/logging.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Logging
order: 100
title: Send data to Rerun
order: 0
redirect: howto/logging/send-columns
---
2 changes: 1 addition & 1 deletion docs/content/howto/logging/custom-data.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Log arbitrary data
title: Send user-defined data
order: 200
description: How to use Rerun with custom data
---
Expand Down
2 changes: 1 addition & 1 deletion docs/content/howto/logging/send-columns.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Log entire timeseries at once
title: Send entire timeseries at once
order: 0
description: How to use the Rerun SDK to log big chunks of data in one call
---
Expand Down
2 changes: 1 addition & 1 deletion docs/content/howto/visualization/reuse-blueprints.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Re-use blueprints across sessions and SDKs
order: 150
---

While the [blueprint APIs](configure-viewer-through-code) are currently only available through [🐍 Python](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/), blueprints can be saved to file and then re-logged as needed from any language our SDKs support.
While the [blueprint APIs](configure-viewer-through-code.md) are currently only available through [🐍 Python](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/), blueprints can be saved to file and then re-logged as needed from any language our SDKs support.

This enables you to re-use your saved blueprints both from any language we support as well as across different recordings that share a similar-enough structure, and makes it possible to share those blueprints with other users.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/dataframes.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Check out the blueprint API and `log_file_from_path` references to learn more:
* [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path)
* [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47)

You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints).
You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints.md).


### Setting up dataframe view manually in the UI
Expand Down
Loading