Skip to content

Instantly share code, notes, and snippets.

@Muhammad-Yunus
Last active April 12, 2020 09:02
Show Gist options
  • Save Muhammad-Yunus/f871b5b70d860727fd50ace05d32a794 to your computer and use it in GitHub Desktop.
Save Muhammad-Yunus/f871b5b70d860727fd50ace05d32a794 to your computer and use it in GitHub Desktop.
Multi Layer Perceptron Backpropagation
DALIY_CO = CO_TS["CO_rolling_mean"] \
.groupby(CO_TS.index.day) \
.agg(['min', 'max', 'mean'])
DALIY_CO.index.name = "Day"
ax = DALIY_CO.plot(title='Daily CO Aggregate')
ax.legend(loc="lower right")
ax.set_ylabel('ug/m3')
plt.fill_between(x=DALIY_CO.index,
y1='min',
y2='max',
facecolor=(1,1,0,.4),
data=DALIY_CO)
print(DALIY_CO)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment