Skip to content

exercicio semana 11#2

Open
andrezataina wants to merge 2 commits into
reprograma:mainfrom
andrezataina:main
Open

exercicio semana 11#2
andrezataina wants to merge 2 commits into
reprograma:mainfrom
andrezataina:main

Conversation

@andrezataina
Copy link
Copy Markdown

No description provided.




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

@manuellysuzik manuellysuzik Aug 15, 2024

Choose a reason for hiding this comment

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

o pandas tem uma função que faz isso automaticamente, pode tentar assim

Suggested change
df["Streaming Popularity"] = (df["Spotify Popularity"] + df["YouTube Views"] + df["TikTok Likes"] + df["Shazam Counts"]) / 4
df["Streaming Popularity"] = df[["Spotify Popularity"] + df["YouTube Views"] + df["TikTok Likes"] + df["Shazam Counts"]].mean(axis=1)


print(df["Streaming Popularity"])

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.

pode tentar o uso do .sum()

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

obrigada

Copy link
Copy Markdown
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.

👍🏼

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