Quotes help make search much faster. Example: "Practice Makes Perfect"

Friday, August 30, 2019

Codecademy Learn Statistics With Python Exercise 3/4


# Sample Solution
# Import packages
import numpy as np
import pandas as pd

# Read author data
greatest_books = pd.read_csv("top-hundred-books.csv")

# Set author ages to a NumPy array
author_ages = greatest_books['Ages']

# Use numpy to calculate the average age of the top 100 authors
average_age = np.average(author_ages)

print("The average age of the 100 greatest authors, according to a survey by Le Monde, is: " + str(average_age))

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts