Skip to content

Latest commit

 

History

History
 
 

notebooks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Notebook Tutorials

This directory contains Jupyter notebook tutorials for Google Cloud Platform. The tutorials assume you have performed the following steps:

  1. Install Jupyter notebooks (instructions)
  2. Install the dependencies in the requirements.txt file (instructions below)
  3. Registered the google-cloud-bigquery magic commands (instructions below)
  4. Set matplotlib to render inline (instructions below)

Install the dependencies

Install the dependencies with the following command:

    pip install --upgrade -r requirements.txt

Register magics and configure matplotlib

You can either perform these set up steps in a single notebook, or add the steps to your IPython configuration file to apply to all notebooks.

Perform set up steps within a notebook

To perform the set up steps for a single notebook, run the following commands in your notebook to register the BigQuery magic commands and set matplotlib to render inline:

%load_ext google.cloud.bigquery
%matplotlib inline

Perform set up steps in your IPython configuration file

To perform the set up steps implicitly for all of your notebooks, add the following code to your ipython_config.py file to register the BigQuery magic commands and set matplotlib to render inline:

c = get_config()

# Register magic commands
c.InteractiveShellApp.extensions = [
    'google.cloud.bigquery',
]

# Enable matplotlib renderings to render inline in the notebook.
c.InteractiveShellApp.matplotlib = 'inline'

See IPython documentation for more information about IPython configuration.