@@ -85,11 +85,11 @@ They can take a number of arguments:
85
85
ways to specify the file format
86
86
- ``dtype ``: A data type name or a dict of column name to data type. If not
87
87
specified, data types will be inferred.
88
- - ``header ``: row number to use as the column names, and the start of the
88
+ - ``header ``: row number(s) to use as the column names, and the start of the
89
89
data. Defaults to 0 if no ``names `` passed, otherwise ``None ``. Explicitly
90
90
pass ``header=0 `` to be able to replace existing names. The header can be
91
91
a list of integers that specify row locations for a multi-index on the columns
92
- E.g. [0,1,3]. Interveaning rows that are not specified will be skipped.
92
+ E.g. [0,1,3]. Intervening rows that are not specified will be skipped.
93
93
(E.g. 2 in this example are skipped)
94
94
- ``skiprows ``: A collection of numbers for rows in the file to skip. Can
95
95
also be an integer to skip the first ``n `` rows
@@ -2938,7 +2938,7 @@ into BigQuery and pull it into a DataFrame.
2938
2938
.. code-block :: python
2939
2939
2940
2940
from pandas.io import gbq
2941
-
2941
+
2942
2942
# Insert your BigQuery Project ID Here
2943
2943
# Can be found in the web console, or
2944
2944
# using the command line tool `bq ls`
@@ -2998,7 +2998,7 @@ To add more rows to this, simply:
2998
2998
2999
2999
To use this module, you will need a BigQuery account. See
3000
3000
<https://cloud.google.com/products/big-query> for details.
3001
-
3001
+
3002
3002
As of 10/10/13, there is a bug in Google's API preventing result sets
3003
3003
from being larger than 100,000 rows. A patch is scheduled for the week of
3004
3004
10/14/13.
0 commit comments