prices change
This commit is contained in:
parent
879f01c22e
commit
3f99d287a6
|
@ -24,6 +24,13 @@
|
|||
</Attribute>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="\data\prices_m.csv">
|
||||
<value>
|
||||
<Attribute>
|
||||
<option name="separator" value="," />
|
||||
</Attribute>
|
||||
</value>
|
||||
</entry>
|
||||
<entry key="\data\station.csv">
|
||||
<value>
|
||||
<Attribute>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PublishConfigData" autoUpload="Always" serverName="chenxd@124.16.151.196:22121 password" remoteFilesAllowedToDisappearOnAutoupload="false">
|
||||
<component name="PublishConfigData" autoUpload="Always" remoteFilesAllowedToDisappearOnAutoupload="false">
|
||||
<serverData>
|
||||
<paths name="chenxd@124.16.151.196:22121 password">
|
||||
<serverdata>
|
||||
|
|
|
@ -159,7 +159,7 @@ class ESSEnv(gym.Env):
|
|||
temperature_df = pd.read_csv('data/temper.csv', sep=',')
|
||||
wind_df = pd.read_csv('data/wind.csv', sep=',')
|
||||
|
||||
price = price_df['Price'].to_numpy(dtype=float)
|
||||
price = price_df['price'].to_numpy(dtype=float)
|
||||
load = load_df['houseload'].to_numpy(dtype=float)
|
||||
irradiance = irradiance_df['irradiance'].to_numpy(dtype=float)
|
||||
temperature = temperature_df['t2m'].to_numpy(dtype=float)
|
||||
|
|
Loading…
Reference in New Issue