You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/v0.13.0.txt
+64-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ enhancements along with a large number of bug fixes.
8
8
9
9
Highlights include support for a new index type ``Float64Index``, support for new methods of interpolation, updated ``timedelta`` operations, and a new string manipulation method ``extract``.
10
10
Several experimental features are added, including new ``eval/query`` methods for expression evaluation, support for ``msgpack`` serialization,
11
-
and an io interface to google's ``BigQuery``.
11
+
and an io interface to Google's ``BigQuery``.
12
12
13
13
.. warning::
14
14
@@ -648,6 +648,69 @@ Experimental
648
648
649
649
os.remove('foo.msg')
650
650
651
+
- ``pandas.io.gbq`` provides a simple way to extract from, and load data into,
652
+
Google's BigQuery Data Sets by way of pandas DataFrames. BigQuery is a high
653
+
performance SQL-like database service, useful for performing ad-hoc queries
654
+
against extremely large datasets. :ref:`See the docs<io.gbq>`
655
+
656
+
.. code-block:: python
657
+
658
+
from pandas.io import gbq
659
+
660
+
# A query to select the average monthly temperatures in the
661
+
# in the year 2000 across the USA. The dataset,
662
+
# publicata:samples.gsod, is available on all BigQuery accounts,
0 commit comments