-
Notifications
You must be signed in to change notification settings - Fork 32
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
Atividade Pandas #13
base: main
Are you sure you want to change the base?
Atividade Pandas #13
Conversation
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.
🚀
# - 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 |
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.
sempre tente uma solução vá funcionar para o máximo de itens possíveis, por exemplo: não soubéssemos a quantidade de itens com os quais queremos calcular a média. Como calcularíamos? O uso do mean()
pode facilitar nisso
#print(df.columns) | ||
|
||
# - 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']) |
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.
o mesmo vale aqui, se vc tivesse que somar o resultado de um numero incontáveis de colunas, como faria? O uso do sum()
te ajudaria nesse problema
filtradas.to_json("./faixas_filtradas.json", index= False) | ||
|
||
# - Garanta que o arquivo foi salvo corretamente | ||
df = pd.read_json("../para_casa/mais_ouvidas_2024.json") |
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.
acho que quis dizer:
df = pd.read_json("../para_casa/mais_ouvidas_2024.json") | |
df = pd.read_json("../faixas_filtradas.json") |
certo?
Atividade Pandas S11