Lump it Together
Highs and Lows
Describe the DataFrame
100

What's the average "influence score"? 

(Hint: use .mean() )

81.82

100

What's the maximum number of posts any of the top 200 influencers has?

17500

100

How many rows and columns does the dataframe have?

200 rows, 10 columns

200

Whats the number of likes for all 200 the top Instagram influencers? 

( Hint: use .sum() )

731,622,500,000

200

Who has the least number of posts?

badbunnypr

200

What is the data type (Dtype) of the total_likes columns?

float64

300

How many of the top 200 influencers have a 60 day engagement rate of over 1.5 ?


(Hint: use > not >=)

65

300

Which influencer from the United States has the lowest 60 days engagement rate?

emmawatson

300
Which of the 10 columns has the highest mean value?

total_likes

400

What's the average "influence score" for influencers in the USA?


84.21

400

How much higher is the highest 60 day engagement rate than the average?

(Hint: What's the highest engagement rate? What's the average engagement rate?)

24.5

400

Whats the average number of posts for the last 5 influencers?

(Hint: use .tail() )

2674

500

How many of the influencers with more than 100,000,000 followers and more than 2000 posts are from the USA?

(Hint: make copies of the dataframe that contains your target data)

14

500

What's the ratio of followers between the influencer from the United States with the most followers and the influencer from Brazil with the most followers?

(Hint: followers from USA divided by followers from Brazil)

around 2.07

500

How many times more followers do the first 5 influencers have compared to the last 5 influencers?

(Hint: Divide the head by the tail)

11.34

M
e
n
u