Technical requirements
The exercises in this chapter require that you have a Python virtual environment set up with the necessary dependencies installed and also have a Jupyter Notebook-compatible IDE set up. If you have not done so already, please follow the instructions in the Technical requirements section of Chapter 7 before jumping into the examples in this chapter.
GitHub repository
You will find data and the code examples covered in this chapter in the chapter_08
folder in the book’s GitHub repository:
https://github.com/PacktPublishing/Getting-Started-with-DuckDB/tree/main/chapter_08.
Obtaining the dataset
To help us unpack DuckDB’s Relational API for Python, we’re going to explore the Seattle Pet Licenses dataset, which contains information about pet licenses that have been registered in the city of Seattle. We’ll be performing a small amount of exploratory data analysis (EDA) over this dataset, which will give us an opportunity to...