@@ -96,7 +96,7 @@ objects. In pandas we call these datetime objects similar to
96
96
97
97
pd.read_csv("../data/air_quality_no2_long.csv", parse_dates=["datetime"])
98
98
99
- Why are these :class: `pandas.Timestamp ` objects useful. Let’s illustrate the added
99
+ Why are these :class: `pandas.Timestamp ` objects useful? Let’s illustrate the added
100
100
value with some example cases.
101
101
102
102
What is the start and end date of the time series data set working
@@ -106,7 +106,7 @@ value with some example cases.
106
106
107
107
air_quality[" datetime" ].min(), air_quality[" datetime" ].max()
108
108
109
- Using :class: `pandas.Timestamp ` for datetimes enable us to calculate with date
109
+ Using :class: `pandas.Timestamp ` for datetimes enables us to calculate with date
110
110
information and make them comparable. Hence, we can use this to get the
111
111
length of our time series:
112
112
@@ -122,7 +122,7 @@ from the standard Python library and defining a time duration.
122
122
<div class =" d-flex flex-row gs-torefguide" >
123
123
<span class =" badge badge-info" >To user guide</span >
124
124
125
- The different time concepts supported by pandas are explained in the user guide section on :ref: `time related concepts <timeseries.overview >`.
125
+ The various time concepts supported by pandas are explained in the user guide section on :ref: `time related concepts <timeseries.overview >`.
126
126
127
127
.. raw :: html
128
128
@@ -157,7 +157,7 @@ accessible by the ``dt`` accessor.
157
157
158
158
An overview of the existing date properties is given in the
159
159
:ref: `time and date components overview table <timeseries.components >`. More details about the ``dt `` accessor
160
- to return datetime like properties is explained in a dedicated section on the :ref: `dt accessor <basics.dt_accessors >`.
160
+ to return datetime like properties are explained in a dedicated section on the :ref: `dt accessor <basics.dt_accessors >`.
161
161
162
162
.. raw :: html
163
163
@@ -353,7 +353,7 @@ Make a plot of the daily mean :math:`NO_2` value in each of the stations.
353
353
<div class =" d-flex flex-row gs-torefguide" >
354
354
<span class =" badge badge-info" >To user guide</span >
355
355
356
- More details on the power of time series ``resampling `` is provided in the user gudie section on :ref: `resampling <timeseries.resampling >`.
356
+ More details on the power of time series ``resampling `` is provided in the user guide section on :ref: `resampling <timeseries.resampling >`.
357
357
358
358
.. raw :: html
359
359
@@ -366,7 +366,7 @@ More details on the power of time series ``resampling`` is provided in the user
366
366
367
367
- Valid date strings can be converted to datetime objects using
368
368
``to_datetime `` function or as part of read functions.
369
- - Datetime objects in pandas supports calculations, logical operations
369
+ - Datetime objects in pandas support calculations, logical operations
370
370
and convenient date-related properties using the ``dt `` accessor.
371
371
- A ``DatetimeIndex `` contains these date-related properties and
372
372
supports convenient slicing.
@@ -382,7 +382,7 @@ More details on the power of time series ``resampling`` is provided in the user
382
382
<div class =" d-flex flex-row gs-torefguide" >
383
383
<span class =" badge badge-info" >To user guide</span >
384
384
385
- A full overview on time series is given in the pages on :ref: `time series and date functionality <timeseries >`.
385
+ A full overview on time series is given on the pages on :ref: `time series and date functionality <timeseries >`.
386
386
387
387
.. raw :: html
388
388
0 commit comments