Skip to content
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
Binary file added docs/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/logo_bw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion docs/supported_formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ stream(df, uri="gapminder.mp4", groupby="Country", title="{Year}")
pip install polars pyarrow hvplot selenium webdriver-manager
```

You must also have `firefox` or `chromedriver` installed on your system.

```bash
conda install -c conda-forge firefox
```

```python
from streamjoy import stream
import polars as pl
Expand All @@ -90,7 +96,7 @@ stream(df, uri="gapminder.mp4", groupby="Country", title="{Year}")
```

<video controls="true" allowfullscreen="true">
<source src="https://github.com/ahuang11/streamjoy/assets/15331990/fb07014c-8c63-46da-9ca0-1592e4649ccd" type="video/mp4">
<source src="https://github.com/ahuang11/streamjoy/assets/15331990/75531331-3974-46b8-8399-6dd14ad31f5c" type="video/mp4">
</video>

## 🗄️ XArray Dataset or DataArray
Expand Down Expand Up @@ -149,6 +155,12 @@ stream(ds, uri="air.mp4", cmap="RdBu_r")
pip install pooch netcdf4 hvplot xarray
```

You must also have `firefox` or `chromedriver` installed on your system.

```bash
conda install -c conda-forge firefox
```

```python
import xarray as xr
import hvplot.xarray
Expand Down
3 changes: 1 addition & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ theme:
name: material
features:
- content.code.copy
icon:
logo: material/library
logo: assets/logo.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
Expand Down