Copyright 2015 Enthought, Inc. All Rights Reserved
In this exercise, we would to compare the distribution of solar power when the sky is clear and when it is cloudy.
First of all, we need to deal with missing data in the dataset.
cloudy column,
since we will not be able to use them in the analysis.method keyword to find
an appropriate interpolation function)
In [1]:
%matplotlib inline
import pandas as pd
# Load the data and plot its columns.
solar = pd.read_csv('solar.csv', index_col=0, parse_dates=True)
solar.plot(subplots=True, figsize=(15, 5));
In [ ]:
# Your code goes here!
cloudy flag.
In [ ]:
# Your code goes here!