Skip to content

Exercicio_S11_Jessica - #6

Open
JessBernardo wants to merge 1 commit into
reprograma:mainfrom
JessBernardo:main
Open

JessBernardo wants to merge 1 commit into
reprograma:mainfrom
JessBernardo:main

Conversation

@JessBernardo

Copy link
Copy Markdown

No description provided.


#Corrija a coluna 'Release Date' para o formato datetime.

df['Release Date'] = pd.to_datetime(df['Release Date'], errors='coerce')

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

o que faz definir o parâmetro errors='coerce' faz?


#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
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

É possível calcular a média as colunas pela função sum()


#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
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

é possível obter a soma de varias colunas com o uso do sum()


#Salve o DataFrame resultante em um novo arquivo JSON chamado 'faixas_filtradas.json'.

df.to_json('./faixas_filtradas.json', orient='records', lines=True)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

O que fazem esses parâmetros que você enviou e porque usou?

@manuellysuzik manuellysuzik left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

💯

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