Posts by Thiago Ramos De Oliveira • 19 points
3 posts
-
0
votes2
answers43
viewsQ: move data left in pandas
import pandas as pd import numpy as np import matplotlib.pyplot as plt from unicodedata import normalize tabelas =…
-
-2
votes1
answer92
viewsQ: Sum the total values of each key of the Python dictionaries
I have the following list of Python dictionaries : creches = [ { "nome": "Recanto do Sol", "cachorros": 12, "gatos": 4, "coelhos": 2, }, { "nome": "Lar dos bichos", "cachorros": 8, "gatos": 5,…
-
0
votes1
answer98
viewsQ: How do I delete part of a string in a pandas.Dataframe
I have a Dataframe with the column Assinatura.Cadastro, but the date and time is all together. How can I leave only the hours field, excluding the date ?…