We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c21b5ee commit f8c6436Copy full SHA for f8c6436
book/cloud.md
@@ -92,6 +92,10 @@ df = pd.read_csv("data/hub-activity.csv")
92
df = df[~df.hub.str.contains("staging")]
93
df = df[~df.cluster.str.contains("prometheus")]
94
95
+# Remove utoronto/highmem - this hub had a data collection bug from Feb 6 to Apr 2, 2025
96
+# that was double-counting users from other hubs (see: https://github.com/2i2c-org/meta/issues/2818)
97
+df = df[~((df.cluster == "utoronto") & (df.hub == "highmem"))]
98
+
99
# To make it easier to visualize these
100
df["clusterhub"] = df.apply(lambda a: f"{a['cluster']}/{a['hub']}", axis=1)
101
```
0 commit comments