Portfolio
-
Recreating Python/Pandas Data Manipulation with Complex SQL Query
I’ve previously posted about looking into NBA statistical data to investigate three-point shooting streaks: https://richchrisparks.com/analyzing-nba-3-point-shot-streaks-with-python-pandas-and-tableau/ . In the post, I explain in general terms how I take play-by-play data sorted either by team or by player from a SQL query and transform it into a table of “streaks” (consecutively made or missed three-point shots) using…
-
Chrome Function Monitor Extension Architecture Deep Dive
In a previous post, I introduced an extension I created for the Chrome Web Browser called the Function Monitor. The extension allows you to monitor a webpage for calls of a specified function, and records and lists those function calls in a tab in the inspector. I have recorded a video demo of how the…
-
Creating a Google Chrome Extension with Node.js and React
Intro Using Node.js and React, I was able to create an extension for the Google Chrome Browser. This extension allows you to monitor a webpage for calls of a specified function, and records and lists those function calls in a tab in the inspector. The extension has been published to the Chrome Web Store and…
-
Analyzing NBA 3 Point Shot Streaks with Python, Pandas, and Tableau
This post describes how I was able to identify and analyze NBA 3-pointer data, inspired by the Rockets’ 27 straight missed three pointers in a crucial playoff game.