Data Types in Pandas

Posted in Python

Exploring Pandas data types and going over some basic dtype management.


Continue reading

Understanding the Pandas DataFrame

Posted in Python

Taking a deeper look at the Pandas DataFrame and the components that make up this data container.


Continue reading

Tidy Data Principles

Posted in Python

Exploring the 3 principles of "Tidy Data" and solving some of the most common data structure issues using Python Pandas


Continue reading

Python Version Management with Pyenv

Posted in Python

Pyenv is a tool that manages different python versions and allows you to seamlessly switch between them.


Continue reading

Python: Add Folder If It Does Not Exist

Posted in Python

Python code to check if a folder path exists. If not, then create the folder.


Continue reading

Web Scraping w/ Selenium & BeautifulSoup

Posted in Python

Selenium & BeautifulSoup are Python packages used to control web browsers and parse website code. Here is how I used these packages to automate the process of copy/pasting table data from a website and saving into a text file.


Continue reading

Crimes In Boston

Posted in Analysis

Data Context

Crimes in Boston - Kaggle.com

Crime incident reports are provided by Boston Police Department (BPD) to document the initial details surrounding an incident to which BPD officers respond. This is a dataset containing records from the new crime incident report system, which includes a reduced set of fields focused on capturing the type of incident as well as when and where it occurred.


Continue reading