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

exercicio #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions exercicios/para-casa/ana-beatriz.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import pandas as pd

df = pd.read_csv("../../material/mais_ouvidas_2024.csv")

#print(df.head())#Traz as 10 primeiras linhas do arquivo
#print(df.columns)
#df_valores_nulos = df.isnull() #identifica valores nulos
#print(df_valores_nulos.sum())
#print(df.duplicated())

df.fillna(0, inplace=True)
df_valores_nulos_apos = df.isnull()
#print(df_valores_nulos_apos.sum())

#print(df.dtypes)

nome_colunas = df.columns

for coluna in nome_colunas:
if df[coluna].dtype == "object":
df[coluna] = df[coluna].str.replace(",", "")
df[coluna] = pd.to_numeric(df[coluna], errors='ignore')
Comment on lines +19 to +22
Copy link
Collaborator

Choose a reason for hiding this comment

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

foi necessário usar o errors=ignore porque está tentando fazer conversão para valores que são objects mesmo ( colunas com caracteres e não strings com números)



#print(df.dtypes)

df['Release Date'] = pd.to_datetime(df['Release Date'])
#print(df.dtypes)
#print(df.head())

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.

faça o uso do mean() para calcular a média entre colunas

#print(df['Streaming Popularity'])
#print(df.columns)

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.

faça o uso do sum() para calcular a soma de valores

#print(df['Total Streams'])
#print(df.columns)

filtered_df = df[(df['Spotify Popularity'] > 80) & (df['Total Streams'] > 1000000 )]
#print(filtered_df.head())
#print(filtered_df['Spotify Popularity'].head())

filtered_df.to_json('faixas_filtradas.json')
Loading