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

Sunday, September 1, 2019

Codecademy Learn Statistics With Python Interquantile Range Exercise 3/4


# Sample Solution
from song_data import songs
from scipy.stats import iqr

#Create the variables interquartile_range here:
interquartile_range = iqr(songs)

# Ignore the code below here
try:
  print("The IQR of the dataset is " + str(interquartile_range) + "\n")
except NameError:
  print("You haven't defined interquartile_range yet\n")

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts