Skip to content
Open
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 modified doc/_static/home/large_data.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,10 +263,11 @@ align: center
:::{tab-item} Layout
```python
import hvplot.pandas
from hvplot.sample_data import us_crime as df
from hvplot.sampledata import stocks

plot1 = df.hvplot(x='Year', y='Violent Crime rate', width=400)
plot2 = df.hvplot(x='Year', y='Burglary rate', width=400)
df = stocks('pandas')
plot1 = df.hvplot(x='date', y='Apple', width=400)
plot2 = df.hvplot(x='date', y='Google', width=400)
plot1 + plot2
```
```{image} ./_static/home/layout.gif
Expand Down Expand Up @@ -312,10 +313,10 @@ align: center
:::{tab-item} Large Data
```python
import hvplot.pandas
from hvplot.sample_data import catalogue as cat
from hvplot.sampledata import synthetic_clusters

df = cat.airline_flights.read()
df.hvplot.scatter(x='distance', y='airtime', rasterize=True, cnorm='eq_hist', width=500)
df = synthetic_clusters('pandas')
df.hvplot.points(datashade=True, by='cat', width=500)
```
```{image} ./_static/home/large_data.gif
---
Expand Down
Loading
Loading