Skip to content
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

AtividadeS11 #20

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

AtividadeS11 #20

wants to merge 3 commits into from

Conversation

agapitoo
Copy link

atividade semana 11, conversões, filtros e etc...

Copy link
Collaborator

@manuellysuzik manuellysuzik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GG

Comment on lines 10 to 11
df ['Spotify Streams'] = df['Spotify Streams'].str.replace(',', '').fillna('0').astype(int)
print(df['Spotify Streams'])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

essa era a única coluna que deveria ser convertida? por que tomou a decisão para substituir os valores nulos por 0 e porque converter a int e não float?


#- Crie uma nova coluna chamada 'Streaming Popularity', que seja a média da popularidade nas plataformas 'Spotify Popularity', 'YouTube Views', 'TikTok Likes', e 'Shazam Counts'. (lembrem-se que só é possível calcular médias e fazer operações matemáticas com tipos númericos)

df['Streaming Popularity'] = (df['Spotify Popularity'] + df['YouTube Views'] + df['TikTok Likes'] + df['Shazam Counts']) /4
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indicaria o uso do mean() para calcular a média dos valores das colunas


#- Crie uma coluna 'Total Streams', somando os valores de 'Spotify Streams', 'YouTube Views', 'TikTok Views', 'Pandora Streams', e 'Soundcloud Streams'.

df['Total Streams'] = (df['Spotify Streams'] + df['YouTube Views'] + df['TikTok Views'] + df['Pandora Streams'] + df['Soundcloud Streams'])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indicaria o uso do sum() para a soma dos valores das colunas

print (filtered_df)

#- Salve o DataFrame resultante em um novo arquivo JSON chamado 'faixas_filtradas.json'.
filtered_df.to_csv('./faixas_filtradas.csv', index=False)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

acredito que deveria ser salvo em json, então o uso da função é to_json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants