Skip to content

Instantly share code, notes, and snippets.

View TimOliverMaier's full-sized avatar

Tim Maier TimOliverMaier

  • Johannes Gutenberg Universität
  • Mainz, Germany
  • 20:22 (UTC +02:00)
View GitHub Profile
@TimOliverMaier
TimOliverMaier / scipy_stats_scale.ipynb
Last active December 9, 2022 11:45
scipy stats scale
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@TimOliverMaier
TimOliverMaier / two_axis_matplotlib.md
Created November 14, 2022 20:07
two_axis_matplotlib

Create second axis in matplotlib

Fig, ax = plt.subplots(1,1)
ax.plot(x,y1)
ax2 = ax.twinx()
ax2.plot(x,y2)