-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
add data dict 2024 & some scripts #18
base: main
Are you sure you want to change the base?
Conversation
0ac054a
to
7232044
Compare
7232044
to
f31897a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ainda não olhei o código todo, mas faltou adicionar no README do projeto referência ao ano 2024 e ao script que tu fez.
Co-authored-by: Maria Fernanda <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Menciona esse README e diretório no README do repositório.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adiciona o ano de 2024 no README do projeto
## Normalize os nomes de colunas | ||
```python data-cleaner.py normalize-columns-cmd ../dados/python-brasil-2024/inscricoes-participantes-original.csv ../dados/python-brasil-2024/inscricoes-participantes.csv``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adiciona uma explicação mais detalhada sobre esse script, e como que faz para gerar o csv original.
@@ -0,0 +1,13 @@ | |||
# Usage | |||
|
|||
## Normalize os nomes de colunas |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Normalize os nomes de colunas | |
## Normaliza o nome das colunas |
|
||
E use o output para como base para o dicionario de dados ;) | ||
|
||
## Columns remover |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Columns remover | |
## Remove colunas |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Porque a pessoa vai querer remover colunas? Adiciona mais detalhes sobre isso nessa docs.
## Columns remover | ||
```python data-cleaner.py remove-columns-cmd ../dados/python-brasil-2024/inscricoes-participantes.csv ../dados/python-brasil-2024/inscricoes-participantes.csv``` | ||
|
||
## Replace separator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Replace separator | |
## Altera separador do CSV |
|
||
## Replace separator | ||
|
||
```python data-cleaner.py replace-separator-cmd ../dados/python-brasil-2024/inscricoes-participantes.csv ../dados/python-brasil-2024/inscricoes-participantes.csv``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mesma sugestão que dei nos outros comentários relacionados a esse script.
df = remove_columns(df, columns) | ||
|
||
|
||
# Write the modified DataFrame to a new CSV file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
df = remove_columns(df, columns) | |
# Write the modified DataFrame to a new CSV file | |
df = remove_columns(df, columns) | |
# Write the modified DataFrame to a new CSV file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Qual o Python qu tu utilizou? Coloca ele aqui tbm na pastinha por favor.
No description provided.