Spaces:
Runtime error
Runtime error
Commit
·
8276ceb
1
Parent(s):
a4a6903
update formatting
Browse files- pages/index.md +9 -3
pages/index.md
CHANGED
@@ -58,6 +58,8 @@ ORDER BY month, repo
|
|
58 |
x=month
|
59 |
y=cumulative_creations
|
60 |
series=repo
|
|
|
|
|
61 |
colorPalette={[
|
62 |
'#cf0d06',
|
63 |
'#eb5752',
|
@@ -70,8 +72,9 @@ ORDER BY month, repo
|
|
70 |
<BarChart
|
71 |
data={hub_growth}
|
72 |
x=month
|
|
|
73 |
y=creations
|
74 |
-
|
75 |
'#cf0d06',
|
76 |
'#eb5752',
|
77 |
'#e88a87',
|
@@ -91,6 +94,7 @@ WHERE repo = 'model'
|
|
91 |
<AreaChart
|
92 |
data={model_creations_by_month}
|
93 |
x=month
|
|
|
94 |
fillColor="#cf0d06"
|
95 |
strokeColor="#eb5752"
|
96 |
labels=true
|
@@ -104,9 +108,10 @@ SELECT month, repo, creations
|
|
104 |
FROM ${hub_growth}
|
105 |
WHERE repo = 'dataset'
|
106 |
```
|
107 |
-
|
108 |
-
|
109 |
x=month
|
|
|
110 |
y=creations
|
111 |
fillColor="#cf0d06"
|
112 |
strokeColor="#eb5752"
|
@@ -124,6 +129,7 @@ WHERE repo = 'space'
|
|
124 |
<AreaChart
|
125 |
data={space_creations_by_month}
|
126 |
x=month
|
|
|
127 |
y=creations
|
128 |
fillColor="#cf0d06"
|
129 |
strokeColor="#eb5752"
|
|
|
58 |
x=month
|
59 |
y=cumulative_creations
|
60 |
series=repo
|
61 |
+
yFmt='#,##0.00,,"M"'
|
62 |
+
xFmt='MMM yyyy'
|
63 |
colorPalette={[
|
64 |
'#cf0d06',
|
65 |
'#eb5752',
|
|
|
72 |
<BarChart
|
73 |
data={hub_growth}
|
74 |
x=month
|
75 |
+
xFmt='MMM yyyy'
|
76 |
y=creations
|
77 |
+
colorPalette={[
|
78 |
'#cf0d06',
|
79 |
'#eb5752',
|
80 |
'#e88a87',
|
|
|
94 |
<AreaChart
|
95 |
data={model_creations_by_month}
|
96 |
x=month
|
97 |
+
xFmt='MMM yyyy'
|
98 |
fillColor="#cf0d06"
|
99 |
strokeColor="#eb5752"
|
100 |
labels=true
|
|
|
108 |
FROM ${hub_growth}
|
109 |
WHERE repo = 'dataset'
|
110 |
```
|
111 |
+
<AreaChart
|
112 |
+
data={dataset_creations_by_month}
|
113 |
x=month
|
114 |
+
xFmt='MMM yyyy'
|
115 |
y=creations
|
116 |
fillColor="#cf0d06"
|
117 |
strokeColor="#eb5752"
|
|
|
129 |
<AreaChart
|
130 |
data={space_creations_by_month}
|
131 |
x=month
|
132 |
+
xFmt='MMM yyyy'
|
133 |
y=creations
|
134 |
fillColor="#cf0d06"
|
135 |
strokeColor="#eb5752"
|