Skip to content

Commit a72bb3b

Browse files
authored
Merge pull request #152 from LucasNH/fix-typo-docs
Fixed a small typo in the Overview/Dataset section of the docs.
2 parents b8bad31 + bd2787c commit a72bb3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assets/tables/citylearn_schema_definition.csv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ Key,Definition
1212
:code:`observations:<observation>:shared_in_central_agent`,"Set to :code:`true` if if named :code:`<observation>` values will be common in all buildings."
1313
:code:`actions`,"Used to define the action space."
1414
:code:`actions:<action>:active`,"Set to :code:`true` if agent will provide named :code:`<action>` to environment."
15-
:code:`agent`,"Used tp define control algorithm to use in simulation."
15+
:code:`agent`,"Used to define control algorithm to use in simulation."
1616
:code:`agent:type`,"Control algorithm class in :py:mod:`citylearn.agents` or user-defined algorithm class path."
1717
:code:`agent:attributes`,"Used to define attributes/hyperparameters that are used to construct control algorithm class specified in :code:`agent:type`."
1818
:code:`agent:attributes:<attribute>`,"Value to set named :code:`<attribute>` to in control algorithm."
1919
:code:`reward_function`,"Used to define reward function to use in simulation."
2020
:code:`reward_function:type`,"Reward function class in :py:mod:`citylearn.reward_function` or user-defined reward function class path."
2121
:code:`reward_function:attributes`,"Used to define attributes/hyperparameters that are used to construct reward function class specified in :code:`reward_function:type`."
2222
:code:`reward_function:attributes:<attribute>`,"Value to set named :code:`<attribute>` to in reward function."
23-
:code:`buildings`,"Used tp define buildings to use in simulation."
23+
:code:`buildings`,"Used to define buildings to use in simulation."
2424
:code:`buildings:<building_name>`,"Used to define the attributes of a building uniquely named :code:`<building_name>`."
2525
:code:`buildings:<building_name>:include`,"Set to :code:`true` if :code:`<building_name>` should be included in simulation."
2626
:code:`buildings:<building_name>:energy_simulation`,"Filename of building data file for :code:`<building_name>`. This file must be located in :code:`root_directory`."
@@ -39,7 +39,7 @@ Key,Definition
3939
:code:`buildings:<building_name>:<device>:attributes:<attribute>`,"Value to set named :code:`<attribute>` of :code:`<device>` class specified in :code:`buildings:<building_name>:<device>:type`."
4040
:code:`buildings:<building_name>:dynamics`,"Used to define building temperature dynamics LSTM models."
4141
:code:`buildings:<building_name>:dynamics:<mode>`,"Used to define building temperature dynamics LSTM model for specific HVAC mode where :code:`<mode>` may be :code:`cooling` or :code:`heating`."
42-
:code:`buildings:<building_name>:dynamics:<mode>:type`,"temperature dynamics class in :py:mod:`citylearn.dynamics` or user-defined dynamics class path."
42+
:code:`buildings:<building_name>:dynamics:<mode>:type`,"Temperature dynamics class in :py:mod:`citylearn.dynamics` or user-defined dynamics class path."
4343
:code:`buildings:<building_name>:dynamics:<mode>:attributes`,"Used to define attributes that are used to construct :code:`buildings:<building_name>:dynamics:<mode>:type`."
4444
:code:`buildings:<building_name>:power_outage`,"Used to define power outage preferences and stochastic model."
4545
:code:`buildings:<building_name>:power_outage:simulate_power_outage`,"Whether to allow time steps when the grid is unavailable and loads must be met using only the building's flexible resources."

docs/source/overview/dataset.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The carbon intensity file is a :code:`.csv` file that contains CO:sub:`2` emissi
4343
Pricing Data File
4444
=================
4545

46-
The carbon intensity file is a :code:`.csv` file that contains current time-step and forecasted electricity price time series. It is used as the source for :py:attr:`citylearn.building.Building.pricing`, which is the source for pricing related observations. The data can be sourced from specific utility providers for a desired location e.g. `Edison <https://www.sce.com/residential/rates/Time-Of-Use-Residential-Rate-Plans>`_. The file structure is shown in the snippet below:
46+
The pricing file is a :code:`.csv` file that contains current time-step and forecasted electricity price time series. It is used as the source for :py:attr:`citylearn.building.Building.pricing`, which is the source for pricing related observations. The data can be sourced from specific utility providers for a desired location e.g. `Edison <https://www.sce.com/residential/rates/Time-Of-Use-Residential-Rate-Plans>`_. The file structure is shown in the snippet below:
4747

4848
.. include:: ../../../citylearn/data/citylearn_challenge_2022_phase_1/pricing.csv
4949
:code: text

0 commit comments

Comments
 (0)