This is a bit cryptic I think. On the one hand you say that Series and Index share common operators, but then you say weekday is removed and datetimeindex methods on a series will raise (so this is not sharing).
Are the changes that are relevant to users not:
Series.weekday is removed (and actually should first be deprecated?)
min/max/unique/nunique/value_counts methods are added to Index types (that they are shared with Series is an implementation detail, no?)
- Add ``is_month_start``, ``is_month_end``, ``is_quarter_start``, ``is_quarter_end``, ``is_year_start``, ``is_year_end`` accessors for ``DateTimeIndex`` / ``Timestamp`` which return a boolean array of whether the timestamp(s) are at the start/end of the month/quarter/year defined by the frequency of the ``DateTimeIndex`` / ``Timestamp`` (:issue:`4565`, :issue:`6998`)
@@ -355,7 +337,7 @@ are introduced. The function :func:`~pandas.read_sql` is kept as a convenience
wrapper around the other two and will delegate to specific function depending on
the provided input (database table name or sql query).
-In practice, you have to provide a SQLAlchemy ``engine`` to the sql functions.
+In practice, you have to provide a SQLAlchemy ``engine`` to the sql functions.
To connect with SQLAlchemy you use the :func:`create_engine` function to create an engine
object from database URI. You only need to create the engine once per database you are
connecting to. For an in-memory sqlite database:
@@ -384,7 +366,7 @@ or by specifying a sql query:
.. ipython:: python
pd.read_sql_query('SELECT * FROM db_table', engine)
-
+
Some other enhancements to the sql functions include:
- support for writing the index. This can be controlled with the ``index``
@@ -397,7 +379,7 @@ Some other enhancements to the sql functions include:
Some of the existing functions or function aliases have been deprecated
and will be removed in future versions. This includes: ``tquery``, ``uquery``,
This is a bit cryptic I think. On the one hand you say that Series and Index share common operators, but then you say weekday is removed and datetimeindex methods on a series will raise (so this is not sharing).
Are the changes that are relevant to users not: