This notebook provides a test case for the notebook profiler.
It includes a range of markdown and code cells intended to test various features of the profiler.
Note that this notebook does not necessarily run...
This cell, for example, contains a single code block:
import pandas
#Create a dataframe
df = pd.DataFrame()
This cell contains two code blocks.
Here's one:
import pandas
#Create a dataframe
df = pd.DataFrame()
and here's another:
import pandas
#Create a dataframe
df = pd.DataFrame()
So that's two...
# This is a code cell
import pandas
#Create a dataframe
df = pd.DataFrame()
# This is a code cell with a magic...
%matplotlib inline
import time
def fn():
"""How is the docstring handled?"""
pass
%load_ext sql
%%sql
SELECT * FROM TABLE;
-- comment just anyway...
#Here's a cell with a shell command
!ls