File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
notebooks/getting_started
third_party/bigframes_vendored/pandas/io Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ BigQuery DataFrames (BigFrames)
6
6
BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
7
7
and machine learning (ML) API powered by the BigQuery engine.
8
8
9
- * ``bigframes.pandas `` provides a pandas-compatible API for analytics.
9
+ * `bigframes.pandas ` provides a pandas API for analytics. Many workloads can be
10
+ migrated from pandas to bigframes by just changing a few imports.
10
11
* ``bigframes.ml `` provides a scikit-learn-like API for ML.
11
12
12
13
BigQuery DataFrames is an open-source package.
Original file line number Diff line number Diff line change 81
81
" \n " ,
82
82
" BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame and machine learning (ML) API powered by the BigQuery engine.\n " ,
83
83
" \n " ,
84
- " * `bigframes.pandas` provides a pandas-like API for analytics.\n " ,
84
+ " * `bigframes.pandas` provides a pandas API for analytics. Many workloads can be\n " ,
85
+ " migrated from pandas to bigframes by just changing a few imports.\n " ,
85
86
" * `bigframes.ml` provides a scikit-learn-like API for ML.\n " ,
86
87
" * `bigframes.ml.llm` provides API for large language models including Gemini.\n " ,
87
88
" \n " ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def read_gbq(
45
45
* (Recommended) Set the ``index_col`` argument to one or more columns.
46
46
Unique values for the row labels are recommended. Duplicate labels
47
47
are possible, but note that joins on a non-unique index can duplicate
48
- rows via pandas-like outer join behavior.
48
+ rows via pandas-compatible outer join behavior.
49
49
50
50
.. note::
51
51
By default, even SQL query inputs with an ORDER BY clause create a
You can’t perform that action at this time.
0 commit comments