1 2 3 # Initialize Otter import otter grader = otter.Notebook("lab03.ipynb") Lab 3: Data Cleaning and EDA In this lab you will be working on visualizing a dataset from the City of Berkeley containing data on calls to the Berkeley Police Department. Information about the dataset can be found at this link.
Content Warning This lab includes an analysis of crime in Berkeley. If you feel uncomfortable with this topic, please contact your GSI or the instructors.
1 2 3 # Initialize Otter import otter grader = otter.Notebook("lab04.ipynb") Lab 4: Visualization, Transformations, and KDEs Objective In this lab you will get some practice plotting, applying data transformations, and working with kernel density estimators (KDEs). We will be working with data from the World Bank containing various statistics for countries and territories around the world.
1 2 3 4 5 6 7 8 9 10 import pandas as pd import numpy as np import seaborn as sns import matplotlib.