def load_bc_dataset():
    return pd.DataFrame({
        'Load': bchydro.load_remove_zeros(),
        'Temperature': bchydro.temperature()
    })
 def _get_temperature(self):
     return bc.temperature()
def load_bc_dataset():
    return pd.DataFrame(
        {'Load': bchydro.load_remove_zeros(),
         'Temperature': bchydro.temperature()})
 def _get_temperature(self):
     return bc.temperature()