Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 18654
Kernel: Python 3

OSS Stats

This notebook shows a number of OSS related stats

%matplotlib inline
df = pd.DataFrame(hugo.participants_metadatas())
df_plot = df.groupby(['company','status']).size().round().unstack().fillna(0) df_plot.plot(kind='barh',figsize=(10,10),stacked=True, table=False)
<matplotlib.axes._subplots.AxesSubplot at 0x7feef2b11e80>
Image in a Jupyter notebook
df['status'].value_counts().plot()
<matplotlib.axes._subplots.AxesSubplot at 0x7f09c0ca7da0>
Image in a Jupyter notebook
df['status'].value_counts().plot.pie()
<matplotlib.axes._subplots.AxesSubplot at 0x7feef0637d68>
Image in a Jupyter notebook