Skip to content

Instantly share code, notes, and snippets.

@FerrazThales
Created September 6, 2021 00:05
Show Gist options
  • Save FerrazThales/2f29363df9ca63fdd1c56380a10c9098 to your computer and use it in GitHub Desktop.
Save FerrazThales/2f29363df9ca63fdd1c56380a10c9098 to your computer and use it in GitHub Desktop.
teste
#ultimo ponto
ultimo_ponto = len(df_brasil['total_deaths'])
ultimo_ponto = df_brasil[['total_deaths','population']][ultimo_ponto-1:]
ax[1][1].scatter(ultimo_ponto.index,(ultimo_ponto['total_deaths']),color='darkblue')
ax[1][1].text(ultimo_ponto.index,np.log10(ultimo_ponto['total_deaths'])+200000,s=' {:,}'.format(int(np.log10(ultimo_ponto['total_deaths'][0]))),fontsize=14)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment