Skip to content

Commit

Permalink
minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmygithubaccount committed Sep 7, 2024
1 parent 59abe2d commit e7122d0
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 3 deletions.
29 changes: 29 additions & 0 deletions eda.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,40 @@ ibis.options.repr.interactive.max_columns = None
px.defaults.template = "plotly_dark"
```


```{python}
import ibis
import gcsfs
import pandas as pd
from deltalake import DeltaTable
ibis.options.interactive = True
```

```{python}
fs = gcsfs.GCSFileSystem(token="anon")
ibis.get_backend().register_filesystem(fs)
```

```{python}
t = DeltaTable("gs://ibis-analytics/penguins.delta")
t.to_pyarrow_table()
```

```{python}
ibis.read_delta("gs://ibis-analytics/penguins.delta")
```

```{python}
t = docs_t
t
```

```{python}
t.schema()
```

```{python}
t.count()
```
Expand Down
1 change: 0 additions & 1 deletion src/ibis_analytics/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
RAW_DATA_DIR = "_raw"
RAW_DATA_GH_DIR = "github"
RAW_DATA_DOCS_DIR = "docs"
RAW_DATA_PYPI_DIR = "pypi"
RAW_DATA_ZULIP_DIR = "zulip"

GH_PRS_TABLE = "gh_prs"
Expand Down
4 changes: 2 additions & 2 deletions website/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project:
# website
website:
# basics
title: "Ibis Analytics"
title: "Ibis analytics"
description: "Ibis analytics with Ibis."
#favicon: logo.png
search: false
Expand All @@ -27,5 +27,5 @@ website:
# theme
format:
html:
theme: minty
theme: darkly
toc: true
3 changes: 3 additions & 0 deletions website/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ about:
- icon: github
text: github
href: https://github.com/ibis-project/ibis-analytics
- icon: laptop
text: dashboard
href: https://connect.posit.cloud/lostmygithubaccount/content/0191ce7f-f54a-40f7-a6d4-3e555a40128c
---

***Ibis analytics with Ibis.***
Expand Down
Binary file added website/layers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e7122d0

Please sign in to comment.