In my Jupyter Notebook code, I don't know why I keep getting this error when trying to read my CSV file.
```python
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import pandas
from scipy.interpolate import interp1d
# Load temperature data (table) using the Package Pandas
# Annual average temperature in Florida from 1895 to 2017
# Source: https://www.ncdc.noaa.gov/cag/statewide/time-series/8/tavg/12/12/1895-2018?base_prd=true&firstbaseyear=1895&lastbaseyear=2000
# Load data from 'Florida_temp_mean_1895_2017.csv' using pandas
df = pandas.read_csv('Florida_temp_mean_1895_2017.csv')
# Show data
df
```