Posts by Cosme Franco • 15 points
3 posts
-
0
votes2
answers2625
viewsQ: Inner Join with two keys with python
I have two tables, one for consultation and one for examinations, both with the date of execution and the code of the beneficiary. Want to make a third table with people who have had exams and…
-
0
votes1
answer96
viewsQ: Unify two or more variaves with jupyter notebook
Good afternoon! I have a database with the variables: number card, date of hospitalization and date of discharge. I want to unify the three variables in a single with the name Chave_hospitalization.…
pythonasked Cosme Franco 15 -
0
votes1
answer1539
viewsQ: Group data by Month/Year
import numpy as np import pandas as pd BASE_GERAL = pd.read_csv('base_prestadores.csv') indice | data_utilização| preço | quantidade_itens 1 | 2014-05-01 | 20.00 | 5 2 | 2014-05-08 | 30.00 | 6 3 |…