Skip to content

Instantly share code, notes, and snippets.

@tomonori-masui
Last active July 2, 2021 02:18
Show Gist options
  • Save tomonori-masui/85e9f4af778c045a20a282dd368a203a to your computer and use it in GitHub Desktop.
Save tomonori-masui/85e9f4af778c045a20a282dd368a203a to your computer and use it in GitHub Desktop.
import statsmodels.api as sm
data = sm.datasets.sunspots.load_pandas()
ts_sun = data.data.set_index('YEAR').SUNACTIVITY
ts_sun.plot(figsize=(12, 5))
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment