Skip to content

Commit e060616

Browse files
committed
DOC: minor corrections in v0.14.1
1 parent 959e3e4 commit e060616

File tree

3 files changed

+21
-24
lines changed

3 files changed

+21
-24
lines changed

doc/source/io.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ after a delimiter:
258258
data = 'a, b, c\n1, 2, 3\n4, 5, 6'
259259
print(data)
260260
pd.read_csv(StringIO(data), skipinitialspace=True)
261-
261+
262262
Moreover, ``read_csv`` ignores any completely commented lines:
263263

264264
.. ipython:: python
@@ -2962,7 +2962,7 @@ Notes & Caveats
29622962
``tables``. The sizes of a string based indexing column
29632963
(e.g. *columns* or *minor_axis*) are determined as the maximum size
29642964
of the elements in that axis or by passing the parameter
2965-
- Be aware that timezones (e.g., ``pytz.timezone('US/Eastern')``)
2965+
- Be aware that timezones (e.g., ``pytz.timezone('US/Eastern')``)
29662966
are not necessarily equal across timezone versions. So if data is
29672967
localized to a specific timezone in the HDFStore using one version
29682968
of a timezone library and that data is updated with another version, the data
@@ -3409,14 +3409,14 @@ Google BigQuery (Experimental)
34093409
The :mod:`pandas.io.gbq` module provides a wrapper for Google's BigQuery
34103410
analytics web service to simplify retrieving results from BigQuery tables
34113411
using SQL-like queries. Result sets are parsed into a pandas
3412-
DataFrame with a shape and data types derived from the source table.
3413-
Additionally, DataFrames can be appended to existing BigQuery tables if
3412+
DataFrame with a shape and data types derived from the source table.
3413+
Additionally, DataFrames can be appended to existing BigQuery tables if
34143414
the destination table is the same shape as the DataFrame.
34153415

34163416
For specifics on the service itself, see `here <https://developers.google.com/bigquery/>`__
34173417

3418-
As an example, suppose you want to load all data from an existing BigQuery
3419-
table : `test_dataset.test_table` into a DataFrame using the :func:`~pandas.io.read_gbq`
3418+
As an example, suppose you want to load all data from an existing BigQuery
3419+
table : `test_dataset.test_table` into a DataFrame using the :func:`~pandas.io.read_gbq`
34203420
function.
34213421

34223422
.. code-block:: python
@@ -3447,14 +3447,14 @@ Finally, you can append data to a BigQuery table from a pandas DataFrame
34473447
using the :func:`~pandas.io.to_gbq` function. This function uses the
34483448
Google streaming API which requires that your destination table exists in
34493449
BigQuery. Given the BigQuery table already exists, your DataFrame should
3450-
match the destination table in column order, structure, and data types.
3451-
DataFrame indexes are not supported. By default, rows are streamed to
3452-
BigQuery in chunks of 10,000 rows, but you can pass other chuck values
3453-
via the ``chunksize`` argument. You can also see the progess of your
3454-
post via the ``verbose`` flag which defaults to ``True``. The http
3455-
response code of Google BigQuery can be successful (200) even if the
3456-
append failed. For this reason, if there is a failure to append to the
3457-
table, the complete error response from BigQuery is returned which
3450+
match the destination table in column order, structure, and data types.
3451+
DataFrame indexes are not supported. By default, rows are streamed to
3452+
BigQuery in chunks of 10,000 rows, but you can pass other chuck values
3453+
via the ``chunksize`` argument. You can also see the progess of your
3454+
post via the ``verbose`` flag which defaults to ``True``. The http
3455+
response code of Google BigQuery can be successful (200) even if the
3456+
append failed. For this reason, if there is a failure to append to the
3457+
table, the complete error response from BigQuery is returned which
34583458
can be quite long given it provides a status for each row. You may want
34593459
to start with smaller chuncks to test that the size and types of your
34603460
dataframe match your destination table to make debugging simpler.
@@ -3470,9 +3470,9 @@ The BigQuery SQL query language has some oddities, see `here <https://developers
34703470

34713471
While BigQuery uses SQL-like syntax, it has some important differences
34723472
from traditional databases both in functionality, API limitations (size and
3473-
qunatity of queries or uploads), and how Google charges for use of the service.
3473+
qunatity of queries or uploads), and how Google charges for use of the service.
34743474
You should refer to Google documentation often as the service seems to
3475-
be changing and evolving. BiqQuery is best for analyzing large sets of
3475+
be changing and evolving. BiqQuery is best for analyzing large sets of
34763476
data quickly, but it is not a direct replacement for a transactional database.
34773477

34783478
You can access the management console to determine project id's by:

doc/source/release.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,11 @@ analysis / manipulation tool available in any language.
4848
pandas 0.14.1
4949
-------------
5050

51-
**Release date:** (????)
51+
**Release date:** (July 11, 2014)
5252

5353
This is a minor release from 0.14.0 and includes a number of API changes, several new features, enhancements, and
5454
performance improvements along with a large number of bug fixes.
5555

56-
Highlights include:
57-
5856
See the :ref:`v0.14.1 Whatsnew <whatsnew_0141>` overview or the issue tracker on GitHub for an extensive list
5957
of all API changes, enhancements and bugs that have been fixed in 0.14.1.
6058

doc/source/v0.14.1.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ Performance
151151
.. _whatsnew_0141.experimental:
152152

153153

154-
- Bug in line plot doesn't set correct ``xlim`` if ``secondary_y=True`` (:issue:`7459`)
155154

156155

157156

@@ -165,7 +164,7 @@ Experimental
165164
dependency on the Google ``bq.py`` command line client. This submodule
166165
now uses ``httplib2`` and the Google ``apiclient`` and ``oauth2client`` API client
167166
libraries which should be more stable and, therefore, reliable than
168-
``bq.py`` (:issue:`6937`).
167+
``bq.py``. See :ref:`the docs <io.bigquery>`. (:issue:`6937`).
169168

170169
.. _whatsnew_0141.bug_fixes:
171170

@@ -180,8 +179,8 @@ Bug Fixes
180179
- Bug in groupby ``.nth`` with a Series and integer-like column name (:issue:`7559`)
181180
- Bug in ``Series.get`` with a boolean accessor (:issue:`7407`)
182181
- Bug in ``value_counts`` where ``NaT`` did not qualify as missing (``NaN``) (:issue:`7423`)
183-
- Bug in ``to_timedelta`` that accepted invalid units and misinterpreted 'm/h' (:issue:`7611`, :issue: `6423`)
184-
182+
- Bug in ``to_timedelta`` that accepted invalid units and misinterpreted 'm/h' (:issue:`7611`, :issue:`6423`)
183+
- Bug in line plot doesn't set correct ``xlim`` if ``secondary_y=True`` (:issue:`7459`)
185184
- Bug in grouped ``hist`` and ``scatter`` plots use old ``figsize`` default (:issue:`7394`)
186185
- Bug in plotting subplots with ``DataFrame.plot``, ``hist`` clears passed ``ax`` even if the number of subplots is one (:issue:`7391`).
187186
- Bug in plotting subplots with ``DataFrame.boxplot`` with ``by`` kw raises ``ValueError`` if the number of subplots exceeds 1 (:issue:`7391`).
@@ -195,7 +194,7 @@ Bug Fixes
195194
- Bug in multi-index slicing with datetimelike ranges (strings and Timestamps), (:issue:`7429`)
196195
- Bug in ``Index.min`` and ``max`` doesn't handle ``nan`` and ``NaT`` properly (:issue:`7261`)
197196
- Bug in ``PeriodIndex.min/max`` results in ``int`` (:issue:`7609`)
198-
- Bug in ``resample`` where ``fill_method`` was ignored if you passed ``how`` (:issue:`7261`)
197+
- Bug in ``resample`` where ``fill_method`` was ignored if you passed ``how`` (:issue:`2073`)
199198
- Bug in ``TimeGrouper`` doesn't exclude column specified by ``key`` (:issue:`7227`)
200199
- Bug in ``DataFrame`` and ``Series`` bar and barh plot raises ``TypeError`` when ``bottom``
201200
and ``left`` keyword is specified (:issue:`7226`)

0 commit comments

Comments
 (0)