Overview
Teaching: min Exercises: 10 minQuestions
How do I know my code runs?
Objectives
Set up the example script
import numpy as np
age = np.loadtxt("participants.tsv", skiprows=1, usecols=3)
mean_age = sum(age)/len(age)
np.savetxt("demeaned_age.txt", age-mean_age)
print("done!")
Tasks:
Key Points
Running things manually does not scale.