In [ ]:
%%sh
cat << EOF > hw3_answers.py
import numpy as np
import math as ma
EOF
In [2]:
%%sh
cat << EOF >> hw3_answers.py
def load_data(): # add your arguments!
pass # replace this line with your code for question 1
EOF
In [3]:
%%sh
cat << EOF >> hw3_answers.py
def count_new(): # add your arguments!
pass # replace this line with your code for question 2
EOF
In [4]:
%%sh
cat << EOF >> hw3_answers.py
def get_heaviest_new(): # add your arguments!
pass # replace this line with your code for question 3
EOF
In [5]:
%%sh
cat << EOF >> hw3_answers.py
def price_summary_new(): # add your arguments!
pass # replace this line with your code for question 4
EOF
In [6]:
%%sh
cat << EOF >> hw3_answers.py
def bad_resolution(): # add your arguments!
pass # replace this line with your code for question 5
EOF
In [ ]:
%%sh
cat << EOF >> hw3_answers.py
def resolution_fit(): # add your arguments!
pass # replace this line with your code for question 6
EOF