-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.qmd
73 lines (50 loc) · 1.41 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: "Ibis analytics"
about:
template: solana
links:
- icon: github
text: github
href: https://github.com/ibis-project/ibis-analytics
- icon: laptop
text: dashboard
href: https://connect.posit.cloud/lostmygithubaccount/content/019202a8-c102-e635-0b7e-f8f769a1a982
---
***Ibis analytics with Ibis.***
## Overview
We use Ibis for analytics about Ibis.
![Source: [Voltron Data Composable Codex](https://voltrondata.com/codex)](img/layers.png)
This project uses:
1. **User interface**: [Ibis](https://github.com/ibis-project/ibis) (Python dataframe code and/or SQL)
2. **Execution engine**: [DuckDB](https://github.com/duckdb/duckdb) (local) and [ClickHouse](https://github.com/clickhouse/clickhouse) (remote)
3. **Data storage**: [Delta Lake](https://github.com/delta-io/delta) tables (local and/or cloud object storage) and ClickHouse tables (remote)
You can mix and match execution engines and data storage via Ibis.
## Setup
::: {.panel-tabset}
## Development
Install [`gh`](https://github.com/cli/cli) and [`just`](https://github.com/casey/just) and [`uv`](https://github.com/astral-sh/uv), then:
```bash
gh repo clone ibis-project/ibis-analytics
cd ibis-analytics
just setup
. .venv/bin/activate
```
## Pip
```bash
pip install ibis-analytics
```
:::
## Usage
Use the CLI:
```bash
ia
```
Open the dashboard:
```bash
ia dash
```
## Development
Format your code:
```bash
just fmt
```