Posts by Felipe Ferreira • 71 points
5 posts
-
1
votes2
answers2626
viewsQ: How to make a "procv" in Python using the Pandas library
good afternoon! I got csv down: Nome Vendas Produto Data Carlos 83,40 cod2 15/04/2020 Andre 70,50 cod5 10/04/2020 Cristina 100 cod7 25/04/2020 Carlos 20,80 cod1 03/04/2020 Gisele 10,50 cod9…
-
4
votes3
answers11645
viewsQ: Using Groupby in Pandas dataframe
good afternoon. I don’t have much skill with Python, I’m having some doubts. Anyone who can help me, I thank you. I opened my csv file in python as follows: import pandas as pd caminhoArquivo =…
-
0
votes2
answers162
viewsQ: Identify zero sequences in a csv file using python
good morning! I’m having trouble identifying sequences of zero in a csv file, using Pyhton. Below is an example of my csv file: Index | Ponto de Medição | Data | Hora |ZeroApply 0 | User1 |…
-
0
votes0
answers119
viewsQ: Index column using data from my csv file
Good night to you all! I opened a csv file in python using the following command: caminhoarquivo = r'C:\Users\user\Desktop\teste.csv' basedados = pd.read_csv(caminhoarquivo,sep=';',decimal=',',…
-
0
votes1
answer175
viewsQ: How to open . csv file containing "ç" in column label with Python
I’m starting at the Python and I have a problem: I need to open a file .csv in the Python, but in the column header contains a ç. When I try to open it presents the following error:…