Skip to content

Commit f09d38e

Browse files
committed
DOC: cross-reference to_gbq and read_gbq
1 parent cb178d9 commit f09d38e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pandas/core/frame.py

+1
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,7 @@ def to_gbq(
11871187
See Also
11881188
--------
11891189
pandas_gbq.to_gbq : This function in the pandas-gbq library.
1190+
pandas.read_gbq : Read a DataFrame from Google BigQuery.
11901191
"""
11911192
from pandas.io import gbq
11921193
return gbq.to_gbq(

pandas/io/gbq.py

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def read_gbq(
8989
See Also
9090
--------
9191
pandas_gbq.read_gbq : This function in the pandas-gbq library.
92+
pandas.DataFrame.to_gbq : Write a DataFrame to Google BigQuery.
9293
"""
9394
pandas_gbq = _try_import()
9495
return pandas_gbq.read_gbq(

0 commit comments

Comments
 (0)