import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from scipy.optimize import curve_fit
%config InlineBackend.figure_format = 'retina'
%matplotlib inline
plt.rcParams.update({'font.size':16})
pandas
¶Work through the exercises in this section to get more familiar with pandas
. Similar to the Introduction to Jupyter Notebooks exercises, I haven't provided full solutions to all of these exercises.
As a change from (astro)physics data, today we're going to be looking at penguins.
To get started, download the palmerpenguins dataset and save it in the folder you're using for this weeks work. Remember, keeping all your data files and notebooks in one place saves you the hassle of messing about with paths every time.
Throughout these exercises you should be writing what you are doing and why you're doing it in the markdown cells alongside your code. I know I keep saying this, but it is important. Could I be giving you a clue to what I'm expecting you to do for your coursework? You could say that, but I couldn't possibly comment.