Skip to content

Commit 87cc59b

Browse files
DOC: remove mention of TimeSeries in docs
1 parent 40045dc commit 87cc59b

File tree

5 files changed

+13
-17
lines changed

5 files changed

+13
-17
lines changed

doc/source/basics.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ series data where this sort of "interpolation" logic is the correct thing to
921921
do. More sophisticated interpolation of missing values would be an obvious
922922
extension.
923923

924-
We illustrate these fill methods on a simple TimeSeries:
924+
We illustrate these fill methods on a simple time series:
925925

926926
.. ipython:: python
927927

doc/source/dsintro.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -484,10 +484,8 @@ row-wise. For example:
484484
485485
df - df.iloc[0]
486486
487-
In the special case of working with time series data, if the Series is a
488-
TimeSeries (which it will be automatically if the index contains datetime
489-
objects), and the DataFrame index also contains dates, the broadcasting will be
490-
column-wise:
487+
In the special case of working with time series data, and the DataFrame index
488+
also contains dates, the broadcasting will be column-wise:
491489

492490
.. ipython:: python
493491
:okwarning:

doc/source/faq.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ properties. Here are the pandas equivalents:
180180
Frequency conversion
181181
~~~~~~~~~~~~~~~~~~~~
182182

183-
Frequency conversion is implemented using the ``resample`` method on TimeSeries
184-
and DataFrame objects (multiple time series). ``resample`` also works on panels
185-
(3D). Here is some code that resamples daily data to montly:
183+
Frequency conversion is implemented using the ``resample`` method on Series
184+
and DataFrame objects with a DatetimeIndex or PeriodIndex. ``resample`` also
185+
works on panels (3D). Here is some code that resamples daily data to montly:
186186

187187
.. ipython:: python
188188

doc/source/overview.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Package overview
99
:mod:`pandas` consists of the following things
1010

1111
* A set of labeled array data structures, the primary of which are
12-
Series/TimeSeries and DataFrame
12+
Series and DataFrame
1313
* Index objects enabling both simple axis indexing and multi-level /
1414
hierarchical axis indexing
1515
* An integrated group by engine for aggregating and transforming data sets
@@ -32,7 +32,6 @@ Data structures at a glance
3232
:widths: 15, 20, 50
3333

3434
1, Series, "1D labeled homogeneously-typed array"
35-
1, TimeSeries, "Series with index containing datetimes"
3635
2, DataFrame, "General 2D labeled, size-mutable tabular structure with
3736
potentially heterogeneously-typed columns"
3837
3, Panel, "General 3D labeled, also size-mutable array"
@@ -118,4 +117,4 @@ visit the `project website <http://pandas.pydata.org>`__.
118117
License
119118
-------
120119

121-
.. literalinclude:: ../../LICENSE
120+
.. literalinclude:: ../../LICENSE

doc/source/timeseries.rst

+5-6
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ Time series-related instance methods
720720
Shifting / lagging
721721
~~~~~~~~~~~~~~~~~~
722722

723-
One may want to *shift* or *lag* the values in a TimeSeries back and forward in
723+
One may want to *shift* or *lag* the values in a time series back and forward in
724724
time. The method for this is ``shift``, which is available on all of the pandas
725725
objects. In DataFrame, ``shift`` will currently only shift along the ``index``
726726
and in Panel along the ``major_axis``.
@@ -739,7 +739,7 @@ The shift method accepts an ``freq`` argument which can accept a
739739
ts.shift(5, freq='BM')
740740
741741
Rather than changing the alignment of the data and the index, ``DataFrame`` and
742-
``TimeSeries`` objects also have a ``tshift`` convenience method that changes
742+
``Series`` objects also have a ``tshift`` convenience method that changes
743743
all the dates in the index by a specified number of offsets:
744744

745745
.. ipython:: python
@@ -1114,16 +1114,16 @@ time zones using ``tz_convert``:
11141114
rng_berlin[5]
11151115
rng_eastern[5].tz_convert('Europe/Berlin')
11161116
1117-
Localization of Timestamps functions just like DatetimeIndex and TimeSeries:
1117+
Localization of Timestamps functions just like DatetimeIndex and Series:
11181118

11191119
.. ipython:: python
11201120
11211121
rng[5]
11221122
rng[5].tz_localize('Asia/Shanghai')
11231123
11241124
1125-
Operations between TimeSeries in different time zones will yield UTC
1126-
TimeSeries, aligning the data on the UTC timestamps:
1125+
Operations between Series in different time zones will yield UTC
1126+
Series, aligning the data on the UTC timestamps:
11271127

11281128
.. ipython:: python
11291129
@@ -1337,4 +1337,3 @@ The following are equivalent statements in the two versions of numpy.
13371337
else:
13381338
y / np.timedelta64(1,'D')
13391339
y / np.timedelta64(1,'s')
1340-

0 commit comments

Comments
 (0)