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

Friday, August 30, 2019

Codecademy Learn Statistics With Python Median Exercise 3/4


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

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

# Save author ages to author_ages
author_ages = greatest_books['Ages']

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

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

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts