Store the meb as float
This commit is contained in:
parent
cc26a8004b
commit
34172055a6
|
@ -35,8 +35,8 @@ class InselMonthlyEnergyBalance:
|
|||
demand[i] = '0'
|
||||
heating.append(demand[0])
|
||||
cooling.append(demand[1])
|
||||
monthly_heating = pd.DataFrame(heating, columns=[cte.INSEL_MEB])
|
||||
monthly_cooling = pd.DataFrame(cooling, columns=[cte.INSEL_MEB])
|
||||
monthly_heating = pd.DataFrame(heating, columns=[cte.INSEL_MEB]).astype(float)
|
||||
monthly_cooling = pd.DataFrame(cooling, columns=[cte.INSEL_MEB]).astype(float)
|
||||
return monthly_heating, monthly_cooling
|
||||
|
||||
def enrich(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user