Spaces:
Runtime error
Runtime error
Commit
·
6cfe5ea
1
Parent(s):
1faa63a
improve titles
Browse files- pages/index.md +6 -10
pages/index.md
CHANGED
@@ -2,9 +2,6 @@
|
|
2 |
title: 🤗 Stats
|
3 |
---
|
4 |
|
5 |
-
# Hub Growth
|
6 |
-
|
7 |
-
Models, Datasets, Spaces created per month
|
8 |
|
9 |
```sql hub_growth
|
10 |
WITH all_data AS (
|
@@ -36,6 +33,8 @@ GROUP BY month, repo
|
|
36 |
ORDER BY month, repo
|
37 |
```
|
38 |
|
|
|
|
|
39 |
<BarChart
|
40 |
data={hub_growth}
|
41 |
x=month
|
@@ -49,7 +48,7 @@ ORDER BY month, repo
|
|
49 |
series=repo
|
50 |
/>
|
51 |
|
52 |
-
|
53 |
|
54 |
```sql model_creations_by_month
|
55 |
SELECT month, repo, creations
|
@@ -66,7 +65,7 @@ WHERE repo = 'model'
|
|
66 |
y=creations
|
67 |
/>
|
68 |
|
69 |
-
|
70 |
|
71 |
```sql dataset_creations_by_month
|
72 |
SELECT month, repo, creations
|
@@ -76,16 +75,13 @@ WHERE repo = 'dataset'
|
|
76 |
<AreaChart
|
77 |
data={dataset_creations_by_month}
|
78 |
x=month
|
|
|
79 |
fillColor="#cf0d06"
|
80 |
strokeColor="#eb5752"
|
81 |
-
lineColor="#000000"
|
82 |
labels=true
|
83 |
-
yMax=20000
|
84 |
-
fillOpacity=0.1
|
85 |
-
y=creations
|
86 |
/>
|
87 |
|
88 |
-
|
89 |
|
90 |
```sql space_creations_by_month
|
91 |
SELECT month, repo, creations
|
|
|
2 |
title: 🤗 Stats
|
3 |
---
|
4 |
|
|
|
|
|
|
|
5 |
|
6 |
```sql hub_growth
|
7 |
WITH all_data AS (
|
|
|
33 |
ORDER BY month, repo
|
34 |
```
|
35 |
|
36 |
+
## Models, Datasets, Spaces created per month.
|
37 |
+
|
38 |
<BarChart
|
39 |
data={hub_growth}
|
40 |
x=month
|
|
|
48 |
series=repo
|
49 |
/>
|
50 |
|
51 |
+
## Models Created Each Month
|
52 |
|
53 |
```sql model_creations_by_month
|
54 |
SELECT month, repo, creations
|
|
|
65 |
y=creations
|
66 |
/>
|
67 |
|
68 |
+
## Datasets Created Each Month
|
69 |
|
70 |
```sql dataset_creations_by_month
|
71 |
SELECT month, repo, creations
|
|
|
75 |
<AreaChart
|
76 |
data={dataset_creations_by_month}
|
77 |
x=month
|
78 |
+
y=creations
|
79 |
fillColor="#cf0d06"
|
80 |
strokeColor="#eb5752"
|
|
|
81 |
labels=true
|
|
|
|
|
|
|
82 |
/>
|
83 |
|
84 |
+
## Spaces Created Each Month
|
85 |
|
86 |
```sql space_creations_by_month
|
87 |
SELECT month, repo, creations
|