Wednesday, February 3, 2021

Python - PANDAS Join dataframes

 df_postos = pd.read_csv(path_cadastros+"Cadastro_Centros_Atributos.CSV", delimiter = ';', usecols=[0, 49], names = ['PLANT', 'Descricao_Posto'], dtype= {'PLANT': str, 'Descricao_Posto': str})

df_postos = df_postos.merge(df_postos_Oper, how='left', left_on='PLANT', right_on='PLANT')

df_postos = df_postos[df_postos['Sigla'].notnull()] 

df_postos = df_postos.sort_values(['Sigla', 'PLANT'], ascending=[True, True])

No comments:

Post a Comment

Power BI APP - Delete or Unpublish

 UNPUBLISH DELETE