如何使用非详细输出调用read_gbq
?
我试过了:
df = pd.io.gbq.read_gbq(query_str, GBQ_PROJECT_ID, verbose=False)
但是我收到了一个错误:
read_gbq() got an unexpected keyword argument 'verbose'
在没有verbose=False
参数的情况下正常工作。
我不确定from the docs我做错了什么。
更新:我正在使用熊猫 在ipython里面0.16.2。这是完整的追溯。
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-14-3d71f83c5920> in <module>()
32 # print query_str
---> 33 df = pd.io.gbq.read_gbq(query_str, GBQ_PROJECT_ID, verbose=False)
34 # print df.head()
TypeError: read_gbq() got an unexpected keyword argument 'verbose'