We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Primeiro script para transformar pedidos de imersão em um dataframe já criado:
import pandas as pd df = pd.read_csv('https://raw.githubusercontent.com/automatiza-mg/automatiza-dataset/main/data/pedidos_apoio.csv') df_columns = ['ORGÃO', 'PROCESSO', 'CLASSIFICAÇÃO'] df = df[[ 'sigla_orgao_solicitante', 'nome_processo', 'classificacao', ]] df['nome_processo'] = [text.upper() for text in df['nome_processo']] df['classificacao'] = [text.upper() for text in df['classificacao']] df.columns = df_columns # markdown_table = df.to_markdown(index=False) df.to_csv( 'data/pedidos_apoio.csv', index=False, encoding='utf-8' )
The text was updated successfully, but these errors were encountered:
gabrielbdornas
No branches or pull requests
Primeiro script para transformar pedidos de imersão em um dataframe já criado:
The text was updated successfully, but these errors were encountered: