Skip to content

Instantly share code, notes, and snippets.

View FerrazThales's full-sized avatar
🎯
Focusing

Thales Ferraz FerrazThales

🎯
Focusing
View GitHub Profile
#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)