Notebook Guidance
When to Use a Notebook
Before choosing to use a notebook, evaluate the task complexity using these
heuristics.
Use a notebook if you meet at least one of these criteria:
- 📈 Data Insights & Storytelling: Use a notebook for any request to "give
insights", "find trends", "explore data", or "analyze data". These tasks
benefit from using visualizations to present the data.
- 📊 Visualizations are requested: The user explicitly asks for charts or
plots.
- 🔄 Stateful / Iterative Exploration: You need to run a query, inspect
results, and decide the next query based on those results while keeping
state in memory.
Do NOT use a notebook ONLY if:
- 📝 Simple Fact/Status: The request only requires a single number (e.g.,
"how many rows") or a status check (e.g., "when was this table updated").
- 🏃♂️ Schema Preview: The request is only about the schema or field
types.
Golden Rule of Data Storytelling: If any analytical insight, trend, or
comparison is involved, favor a notebook and a visualization. A notebook is the
"standard" environment for our developer workflow; do not avoid it because of
"overhead".
Notebook Best Practices
[!IMPORTANT]
Agent execution rules: Your behavior MUST depend on whether the
notebook_execute_cell tool is available in your current context: * If
notebook execute_cell tool is available: You MUST follow the incremental
GENERATE CELL -> EXECUTE CELL -> VALIDATE flow. * If notebook execute_cell
tool is NOT available: You MUST generate the complete notebook and request
user execution.
- CONDITIONAL EXECUTION FLOW:
- If notebook
execute_cell tool is available: Follow the STEP BY
STEP GENERATE CELL -> EXECUTE CELL -> VALIDATE OUTPUT flow. Generate
ONE cell, execute it, then verify the output. If the output is data
(e.g. a dataframe), you MUST inspect it to confirm the logic is correct
before generating the next step. Batch generation of an entire notebook
is strictly prohibited because error propagation in notebooks is
expensive to fix.
- If notebook
execute_cell tool is NOT available:
- Create the whole notebook at once.
- Tell the user to run the notebook.
- Tell the user to let you know once the notebook run is completed so
you can check the outputs to verify it's correct and fix any errors.
- IDENTIFY DATA EARLY: Use
@skill:discovering-gcp-data-assets or
BigQuery list tools to find the correct project.dataset.table before
writing ANY code. If the table ID is missing, ask the user.
- CLEAN FINAL STATE: The final notebook MUST NOT have failed cells. If a
cell fails, you MUST fix it. If you tried several versions, delete the
failed attempts before you present the notebook to the user.
- LOGICAL CHUNK FIDELITY: Keep cells small. One logical transformation or
visualization per cell. Group related cells into logical units (e.g., a
BigQuery
%%bqsql magic cell followed immediately by a Python visualization
cell for those results). Use descriptive markdown cells to separate and
document different logical sections.
- GENERATE VISUALIZATIONS: Always accompany data insights with
visualizations; charts are often more effective than raw numbers for
communicating trends and comparisons.
Kernel & Environment Management
Notebooks run in specific Kernels (execution backends). You MUST ensure the
kernel’s Python environment contains the necessary libraries (bigframes,
ipykernel, etc.).
Kernel Types
- Local Python: Standard Python 3 kernel running on the notebook host
(Managed instance, local machine).
- Cloud Spark Remote (Dataproc Serverless): Transient Spark environment
managed by GCP. Use for large-scale data processing.
- Cloud Spark Remote (Dataproc Cluster): Persistent Spark clusters for
shared or custom configurations.
- Colab (Managed): Ephemeral Google-managed runtimes.
No Active Kernel / Setup Check
- Infer or Ask about Kernel Preferences:
- Infer from Context:
- If the task mentions "Spark", "PySpark", or "distributed compute",
or if the active workspace is already a Spark cluster, lean towards
Remote Spark.
- If the task is focused on "BigQuery", "BigFrames", or standard API
calls, lean towards Local Python.
- Ask when Ambiguous: If multiple options fit, ask if they prefer a
Local Python or a Cloud/Remote Kernel (e.g., Colab, Spark).
- For Local Setup: Use
@skill:managing-python-dependencies to verify if
a virtual environment exists. If not, create one. Ensure ipykernel is
installed in that environment. Install any other relevant libraries.
- For Remote Setup: Advise the user to use the UI to select the
appropriate remote kernel.
[!IMPORTANT]
HARD STOP on kernel failure: If a cell execution returns "no active
kernel" or any kernel-not-found error, you MUST stop immediately. Do NOT
scaffold, generate, or insert any further cells. Inform the user which kernel
is needed (e.g., PySpark / Dataproc Serverless) and wait for explicit
confirmation that a kernel is active before proceeding with notebook
execution.
Proper Library Installation
1. Local Kernels
Before installing any python libraries, you MUST use
@skill:managing-python-dependencies to detect how python dependencies are
managed in the project.
2. Remote Kernels (Spark/Colab)
Since these are often ephemeral or managed by GCP:
- Check first (REQUIRED): Before writing any
%pip install cell, run
%pip list or import <package> to confirm the package is not already
present. Managed runtimes (Dataproc Serverless, Colab) pre-install many
common packages. Only install what is confirmed missing.
- Use
%pip install <package> in the first cell if a package is confirmed
missing and it's the only way to modify the runtime.
When in doubt about the kernel type or preferred installation method, ask the
user for clarification.
Data Analysis & Visualization Rules
Guidelines for performing exploratory data analysis, data cleaning, and
visualization in notebooks.
Notebook Layout
The notebook should read like a story. While you have flexibility (e.g.,
multiple visualizations for one data cell, or data cells building on each
other), aim for this general flow:
- Title & Objective (Markdown Cell)
- What is this notebook for? (e.g.,
# Retention Analysis)
- Section Header (Markdown Cell)
- What are we looking at now? (e.g.,
## Exploring User Retention)
- Data Acquisition/Transformation (Python cell, may contain
%%bqsql
magics)
- Query BigQuery or transform data.
- Verification (Optional but Recommended) (Python Cell)
df.head() or assert sanity checks.
- Visualization (The Goal) (Python Cell)
- Plot the insight (e.g.,
df.plot()).
Repeat steps 2-5 for each new sub-topic or insight. You can have multiple Data
cells before a Visualization, or multiple Visualizations from one Data cell. The
key is to keep them grouped logically and separated by Markdown headers.
Final Summary (Markdown Cell)
- At the end of the notebook, add a markdown cell containing a summary
paragraph that summarizes the findings to the user. The summary MUST
follow these guidelines:
- MUST NOT add Python code to the summary.
- The summary MUST NOT start with a code block.
- The summary MUST be strictly grounded in the numerical data verified in
the notebook.
- The summary MUST ONLY contain the following three sections:
Q&A If the data analysis task contains questions (implied or
explicit), you MUST answer them based on the solving process. Skip
this section if there are no questions to answer.
Data Analysis Key Findings Summarize the key analysis findings
in bullet points, it's a plus to quote the numbers in the previous
steps. Only report high-value findings, skip the obvious ones.
Insights or Next Steps Provide 1-2 concise insights or next
steps in bullet points.
Next Steps: After the notebook has been successfully executed and
verified, and the summary is complete, notify the user and propose next step
suggestions.
Plotting Rules
- You MUST use different colors for different features to ensure plots are
readable for humans.
- When creating a plot, you MUST adjust the figure size based on the number of
features. The labels and legends MUST NOT overlap.
- You SHOULD arrange the layout wisely. Using subplots CAN help in placing
different plots effectively.
- You MUST use inline figures to present figures and plots along with code and
text in the notebook.
- For clustering, use PCA to reduce to 2D before scatter plotting.
- Use Line Charts ONLY for continuous data (e.g. time series) where
interpolation between points is meaningful.
Data Cleaning Rules
- You MUST be careful about missing values and duplicated values.
- You MUST NOT drop columns unless absolutely necessary. Dropping columns is
irreversible.
- You SHOULD focus on columns directly related to accomplishing the task; not
every column NEEDS to be cleaned.
Specialized Notebook Guidance
Refer to the following resources for guidance on specific notebook topics:
1. BigQuery in Notebooks
Use BigFrames magics %%bqsql for BigQuery SQL queries. These cells support
native BigQuery SQL execution and data export to BigFrames dataframes.
[!IMPORTANT]
- Unless specified by the user, always use SQL for querying BigQuery.
- DO NOT use the standard BigQuery Python client library
(
google.cloud.bigquery) or pandas.read_gbq.
- Mandatory dataframe export: Always provide a dataframe name e.g.
%%bqsql <df_name>. This makes it easy to use results in follow up Python
cells.
- Verify that
bigframes version number 2.38.0 and above is installed in
the notebook runtime environment. If it is missing, ask the user if they
would like you to upgrade for them.
Example %%bqsql magic usage:
# Initialize BigFrames and load %%bqsql magics
import bigframes
import bigframes.pandas as bpd
%load_ext bigframes
[!CAUTION]
Always use %load_ext bigframes exactly as shown. Do not load submodules —
for example, %load_ext bigframes.magics or %load_ext bigframes.bigquery
are not valid and must not be used.
[!IMPORTANT]
The bigframes library must be installed. Determine if bigframes needs to be
installed by following @skill:managing-python-dependencies.
%%bqsql df_sample
SELECT * FROM `project.dataset.table` LIMIT 10
Anti-patterns (NEVER DO THESE)
[!CAUTION]
- NO Python SDK for Queries: Do not switch to
client.query(sql).to_dataframe() if SQL fails. Fix the SQL syntax
instead.
- NO Mixing Logic: Do not put Python code in the same cell as
%%bqsql
magics.
Working with SQL Results in Python
Magic cells with %%bqsql <df_name> produce a BigQuery DataFrame. In
subsequent cells, you can use <df_name> directly.
[!IMPORTANT]
You MUST use BigFrames for data exploration, manipulation, splitting etc. You
MUST use BQML SQL or bigframes.ml for machine learning tasks. You MUST NOT use
pandas or Scikit-learn.
BigQuery DataFrame Tips
- Avoid
.to_pandas(): You MUST NOT use .to_pandas() to download the
entire dataset into memory. There are some exceptions:
- An error message explicitly requests you to use
to_pandas()
- You are going to visualize the data, and the visualization library
does not accept BigFrames Dataframe/Series instances. In this case,
reduce the amount of data you are going to download before calling
.to_pandas()
- Avoid
read_gbq() for SQL: Do not write SQL queries and execute them
with read_gbq(). Use BigFrames Dataframe/Series methods instead.
- Use BigFrames ML package for Machine Learning Tasks: Do not use
Scikit-learn or other ML libraries with BigFrames dataframes. Import your
tools/classes from
bigframes.ml.
- Stay in the Cloud: Perform data cleaning, transformation, and analysis
via BigFrames methods to leverage BigQuery's scale.
- Accessors over UDFs/Lambdas:
- Prefer built-in accessors (e.g.,
df.col.str.*, df.col.dt.*) over
remote UDFs.
- Do not use lambdas with
Series.map() or DataFrame.apply().
- Schema Verification: Do not assume schema of intermediate outputs. Check
.dtypes after loading, and use display() with .head() or .peek().
- Visualization: BigFrames Dataframe mostly works directly with
Matplotlib, Seaborn, and other plotting libraries. If your attempt didn't
work, try using the "plot" accessor. If that didn't work either, you MUST
sample or aggregate your data to make it small enough before calling
"to_pandas()".
- Model Persistence: To persist a model. use
model.to_gbq(). To load a
persisted model, use bpd.read_gbq_model().
2. Machine Learning in Notebooks
Integration with machine learning workflows and best practices. - Guide: Use
@skill:ml-best-practices. - MUST READ WHEN: The task involves machine
learning, training a model, clustering, classification, regression, or
time-series forecasting.
If any "MUST READ WHEN" condition is met, you MUST read the corresponding guide
before proceeding.
1---2name: notebook-guidance3description: This skill guides the use of Jupyter notebooks for data analysis, exploration, and visualization, particularly with BigQuery. It outlines best practices for notebook execution and validation (supporting both cell-by-cell execution and full notebook generation depending on tool availability), library installation, and structuring notebooks for clarity. It also covers specific rules for data cleaning, plotting, and integrating with BigQuery SQL and machine learning workflows. Relevant when any of the following conditions are true: 1. The user request involves a data analysis, data exploration, data visualization, or data insights task that requires multiple steps, queries, or visualizations to answer. 2. The user explicitly requests a notebook (.ipynb). 3. You are creating, editing, or executing cells in a Jupyter notebook. 4. You need to query BigQuery from within a notebook. DO NOT use the Python BigQuery client library; instead, you MUST use the `%%bqsql` magics explained in this skill.4license: Apache-2.05---67# Notebook Guidance89## When to Use a Notebook1011Before choosing to use a notebook, evaluate the task complexity using these12heuristics.1314Use a notebook if you meet at least one of these criteria:1516* 📈 **Data Insights & Storytelling**: Use a notebook for any request to "give17 insights", "find trends", "explore data", or "analyze data". These tasks18 benefit from using visualizations to present the data.19* 📊 **Visualizations are requested**: The user explicitly asks for charts or20 plots.21* 🔄 **Stateful / Iterative Exploration**: You need to run a query, inspect22 results, and decide the next query based on those results while keeping23 state in memory.2425Do NOT use a notebook ONLY if:2627* 📝 **Simple Fact/Status**: The request only requires a single number (e.g.,28 "how many rows") or a status check (e.g., "when was this table updated").29* 🏃♂️ **Schema Preview**: The request is only about the schema or field30 types.3132**Golden Rule of Data Storytelling:** If any analytical insight, trend, or33comparison is involved, favor a notebook and a visualization. A notebook is the34"standard" environment for our developer workflow; do not avoid it because of35"overhead".3637## Notebook Best Practices3839> [!IMPORTANT]40>41> **Agent execution rules**: Your behavior MUST depend on whether the42> `notebook_execute_cell` tool is available in your current context: * **If43> notebook `execute_cell` tool is available**: You MUST follow the incremental44> GENERATE CELL -> EXECUTE CELL -> VALIDATE flow. * **If notebook `execute_cell`45> tool is NOT available**: You MUST generate the complete notebook and request46> user execution.47481. **CONDITIONAL EXECUTION FLOW**:49 * **If notebook `execute_cell` tool is available**: Follow the **STEP BY50 STEP GENERATE CELL -> EXECUTE CELL -> VALIDATE OUTPUT** flow. Generate51 ONE cell, execute it, then verify the output. If the output is data52 (e.g. a dataframe), you MUST inspect it to confirm the logic is correct53 before generating the next step. Batch generation of an entire notebook54 is strictly prohibited because error propagation in notebooks is55 expensive to fix.56 * **If notebook `execute_cell` tool is NOT available**:57 * Create the whole notebook at once.58 * Tell the user to run the notebook.59 * Tell the user to let you know once the notebook run is completed so60 you can check the outputs to verify it's correct and fix any errors.612. **IDENTIFY DATA EARLY**: Use `@skill:discovering-gcp-data-assets` or62 BigQuery list tools to find the correct `project.dataset.table` before63 writing ANY code. If the table ID is missing, ask the user.643. **CLEAN FINAL STATE**: The final notebook MUST NOT have failed cells. If a65 cell fails, you MUST fix it. If you tried several versions, delete the66 failed attempts before you present the notebook to the user.674. **LOGICAL CHUNK FIDELITY**: Keep cells small. One logical transformation or68 visualization per cell. Group related cells into logical units (e.g., a69 BigQuery `%%bqsql` magic cell followed immediately by a Python visualization70 cell for those results). Use descriptive **markdown cells** to separate and71 document different logical sections.725. **GENERATE VISUALIZATIONS**: Always accompany data insights with73 visualizations; charts are often more effective than raw numbers for74 communicating trends and comparisons.7576## Kernel & Environment Management7778Notebooks run in specific **Kernels** (execution backends). You MUST ensure the79kernel’s Python environment contains the necessary libraries (`bigframes`,80`ipykernel`, etc.).8182### Kernel Types83841. **Local Python**: Standard Python 3 kernel running on the notebook host85 (Managed instance, local machine).862. **Cloud Spark Remote (Dataproc Serverless)**: Transient Spark environment87 managed by GCP. Use for large-scale data processing.883. **Cloud Spark Remote (Dataproc Cluster)**: Persistent Spark clusters for89 shared or custom configurations.904. **Colab (Managed)**: Ephemeral Google-managed runtimes.9192### No Active Kernel / Setup Check93941. **Infer or Ask about Kernel Preferences**:95 - **Infer from Context**:96 - If the task mentions "Spark", "PySpark", or "distributed compute",97 or if the active workspace is already a Spark cluster, lean towards98 **Remote Spark**.99 - If the task is focused on "BigQuery", "BigFrames", or standard API100 calls, lean towards **Local Python**.101 - **Ask when Ambiguous**: If multiple options fit, ask if they prefer a102 **Local Python** or a **Cloud/Remote Kernel** (e.g., Colab, Spark).1032. **For Local Setup**: Use `@skill:managing-python-dependencies` to verify if104 a virtual environment exists. If not, create one. Ensure `ipykernel` is105 installed in that environment. Install any other relevant libraries.1063. **For Remote Setup**: Advise the user to use the UI to select the107 appropriate remote kernel.108109> [!IMPORTANT]110>111> **HARD STOP on kernel failure**: If a cell execution returns "no active112> kernel" or any kernel-not-found error, you MUST **stop immediately**. Do NOT113> scaffold, generate, or insert any further cells. Inform the user which kernel114> is needed (e.g., PySpark / Dataproc Serverless) and wait for explicit115> confirmation that a kernel is active before proceeding with notebook116> execution.117118### Proper Library Installation119120#### 1. Local Kernels121122Before installing any python libraries, you MUST use123`@skill:managing-python-dependencies` to detect how python dependencies are124managed in the project.125126#### 2. Remote Kernels (Spark/Colab)127128Since these are often ephemeral or managed by GCP:129130* **Check first (REQUIRED)**: Before writing any `%pip install` cell, run131 `%pip list` or `import <package>` to confirm the package is not already132 present. Managed runtimes (Dataproc Serverless, Colab) pre-install many133 common packages. Only install what is confirmed missing.134* Use `%pip install <package>` in the first cell if a package is confirmed135 missing and it's the only way to modify the runtime.136137When in doubt about the kernel type or preferred installation method, ask the138user for clarification.139140## Data Analysis & Visualization Rules141142Guidelines for performing exploratory data analysis, data cleaning, and143visualization in notebooks.144145### Notebook Layout146147The notebook should read like a story. While you have flexibility (e.g.,148multiple visualizations for one data cell, or data cells building on each149other), aim for this general flow:1501511. **Title & Objective** (Markdown Cell)152 * What is this notebook for? (e.g., `# Retention Analysis`)1532. **Section Header** (Markdown Cell)154 * What are we looking at now? (e.g., `## Exploring User Retention`)1553. **Data Acquisition/Transformation** (Python cell, may contain `%%bqsql`156 magics)157 * Query BigQuery or transform data.1584. **Verification (Optional but Recommended)** (Python Cell)159 * `df.head()` or assert sanity checks.1605. **Visualization (The Goal)** (Python Cell)161 * Plot the insight (e.g., `df.plot()`).162163*Repeat steps 2-5 for each new sub-topic or insight. You can have multiple Data164cells before a Visualization, or multiple Visualizations from one Data cell. The165key is to keep them grouped logically and separated by Markdown headers.*1661671. **Final Summary** (Markdown Cell)168169 * At the end of the notebook, add a markdown cell containing a summary170 paragraph that summarizes the findings to the user. The summary MUST171 follow these guidelines:172 * MUST NOT add Python code to the summary.173 * The summary MUST NOT start with a code block.174 * The summary MUST be strictly grounded in the numerical data verified in175 the notebook.176 * The summary MUST ONLY contain the following three sections:177 * ### Q&A If the data analysis task contains questions (implied or178 explicit), you MUST answer them based on the solving process. Skip179 this section if there are no questions to answer.180 * ### Data Analysis Key Findings Summarize the key analysis findings181 in bullet points, it's a plus to quote the numbers in the previous182 steps. Only report high-value findings, skip the obvious ones.183 * ### Insights or Next Steps Provide 1-2 concise insights or next184 steps in bullet points.1851862. **Next Steps**: After the notebook has been successfully executed and187 verified, and the summary is complete, notify the user and propose next step188 suggestions.189190### Plotting Rules1911921. You MUST use different colors for different features to ensure plots are193 readable for humans.1942. When creating a plot, you MUST adjust the figure size based on the number of195 features. The labels and legends MUST NOT overlap.1963. You SHOULD arrange the layout wisely. Using subplots CAN help in placing197 different plots effectively.1984. You MUST use inline figures to present figures and plots along with code and199 text in the notebook.2005. For clustering, use PCA to reduce to 2D before scatter plotting.2016. Use **Line Charts** ONLY for continuous data (e.g. time series) where202 interpolation between points is meaningful.203204### Data Cleaning Rules2052061. You MUST be careful about missing values and duplicated values.2072. You MUST NOT drop columns unless absolutely necessary. Dropping columns is208 irreversible.2093. You SHOULD focus on columns directly related to accomplishing the task; not210 every column NEEDS to be cleaned.211212## Specialized Notebook Guidance213214Refer to the following resources for guidance on specific notebook topics:215216### 1. BigQuery in Notebooks217218Use BigFrames magics `%%bqsql` for BigQuery SQL queries. These cells support219native BigQuery SQL execution and data export to BigFrames dataframes.220221> [!IMPORTANT]222>223> * Unless specified by the user, **always use SQL for querying BigQuery.**224> * DO NOT use the standard BigQuery Python client library225> (`google.cloud.bigquery`) or `pandas.read_gbq`.226> * **Mandatory dataframe export**: Always provide a dataframe name e.g.227> `%%bqsql <df_name>`. This makes it easy to use results in follow up Python228> cells.229> * Verify that `bigframes` version number `2.38.0` and above is installed in230> the notebook runtime environment. If it is missing, ask the user if they231> would like you to upgrade for them.232233**Example %%bqsql magic usage:**234235```python236# Initialize BigFrames and load %%bqsql magics237import bigframes238import bigframes.pandas as bpd239%load_ext bigframes240```241242> [!CAUTION]243>244> Always use `%load_ext bigframes` exactly as shown. Do not load submodules —245> for example, `%load_ext bigframes.magics` or `%load_ext bigframes.bigquery`246> are not valid and must not be used.247248> [!IMPORTANT]249>250> The `bigframes` library must be installed. Determine if bigframes needs to be251> installed by following @skill:managing-python-dependencies.252253```python254%%bqsql df_sample255SELECT * FROM `project.dataset.table` LIMIT 10256```257258#### Anti-patterns (NEVER DO THESE)259260> [!CAUTION]261>262> 1. **NO Python SDK for Queries**: Do not switch to263> `client.query(sql).to_dataframe()` if SQL fails. Fix the SQL syntax264> instead.265> 2. **NO Mixing Logic**: Do not put Python code in the same cell as `%%bqsql`266> magics.267268#### Working with SQL Results in Python269270Magic cells with `%%bqsql <df_name>` produce a **BigQuery DataFrame**. In271subsequent cells, you can use `<df_name>` directly.272273> [!IMPORTANT]274>275> You MUST use BigFrames for data exploration, manipulation, splitting etc. You276> MUST use BQML SQL or bigframes.ml for machine learning tasks. You MUST NOT use277> pandas or Scikit-learn.278279##### BigQuery DataFrame Tips280281* **Avoid `.to_pandas()`**: You MUST NOT use `.to_pandas()` to download the282 entire dataset into memory. There are some exceptions:283 * An error message explicitly requests you to use `to_pandas()`284 * You are going to visualize the data, **and** the visualization library285 does not accept BigFrames Dataframe/Series instances. In this case,286 reduce the amount of data you are going to download before calling287 `.to_pandas()`288* **Avoid `read_gbq()` for SQL**: Do not write SQL queries and execute them289 with `read_gbq()`. Use BigFrames Dataframe/Series methods instead.290* **Use BigFrames ML package for Machine Learning Tasks**: Do not use291 Scikit-learn or other ML libraries with BigFrames dataframes. Import your292 tools/classes from `bigframes.ml`.293* **Stay in the Cloud**: Perform data cleaning, transformation, and analysis294 via BigFrames methods to leverage BigQuery's scale.295* **Accessors over UDFs/Lambdas**:296 * Prefer built-in accessors (e.g., `df.col.str.*`, `df.col.dt.*`) over297 remote UDFs.298 * **Do not use lambdas** with `Series.map()` or `DataFrame.apply()`.299* **Schema Verification**: Do not assume schema of intermediate outputs. Check300 `.dtypes` after loading, and use `display()` with `.head()` or `.peek()`.301* **Visualization**: BigFrames Dataframe mostly works directly with302 Matplotlib, Seaborn, and other plotting libraries. If your attempt didn't303 work, try using the "plot" accessor. If that didn't work either, you MUST304 sample or aggregate your data to make it small enough before calling305 "to_pandas()".306* **Model Persistence**: To persist a model. use `model.to_gbq()`. To load a307 persisted model, use `bpd.read_gbq_model()`.308309### 2. Machine Learning in Notebooks310311Integration with machine learning workflows and best practices. - **Guide**: Use312`@skill:ml-best-practices`. - **MUST READ WHEN**: The task involves machine313learning, training a model, clustering, classification, regression, or314time-series forecasting.315316If any "MUST READ WHEN" condition is met, you MUST read the corresponding guide317before proceeding.