10000 docs: use pandas API instead of pandas-like or pandas-compatible by tswast · Pull Request #1825 · googleapis/python-bigquery-dataframes · GitHub
[go: up one dir, main page]

Skip to content

docs: use pandas API instead of pandas-like or pandas-compatible #1825

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ BigQuery DataFrames (BigFrames)
BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
and machine learning (ML) API powered by the BigQuery engine.

* ``bigframes.pandas`` provides a pandas-compatible API for analytics.
* `bigframes.pandas` provides a pandas API for analytics. Many workloads can be
migrated from pandas to bigframes by just changing a few imports.
* ``bigframes.ml`` provides a scikit-learn-like API for ML.

BigQuery DataFrames is an open-source package.
Expand Down
3 changes: 2 additions & 1 deletion notebooks/getting_started/bq_dataframes_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"\n",
"BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame and machine learning (ML) API powered by the BigQuery engine.\n",
"\n",
"* `bigframes.pandas` provides a pandas-like API for analytics.\n",
"* `bigframes.pandas` provides a pandas API for analytics. Many workloads can be\n",
" migrated from pandas to bigframes by just changing a few imports.\n",
"* `bigframes.ml` provides a scikit-learn-like API for ML.\n",
"* `bigframes.ml.llm` provides API for large language models including Gemini.\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion third_party/bigframes_vendored/pandas/io/gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read_gbq(
* (Recommended) Set the ``index_col`` argument to one or more columns.
Unique values for the row labels are recommended. Duplicate labels
are possible, but note that joins on a non-unique index can duplicate
rows via pandas-like outer join behavior.
rows via pandas-compatible outer join behavior.

.. note::
By default, even SQL query inputs with an ORDER BY clause create a
Expand Down
0