Franklin & Marshall College — with Prof. David Brennan
I support Professor David Brennan's research applying Marxian and Kaleckian profit frameworks to the U.S. economy — a paper now being revised for submission to the Cambridge Journal of Economics. My central contribution is an interactive data layer that lets readers explore the paper's empirical backbone rather than read it off static tables.
# R Shiny dashboard — reactive macro explorer (illustrative)
library(shiny)
library(tidyverse)
server <- function(input, output) {
output$profit_share <- renderPlot({
macro %>% filter(year >= input$range[1], year <= input$range[2]) %>%
ggplot(aes(quarter, profit_share)) + geom_line()
})
}
This role sharpened two things at once: the software craft to build research-grade interactive tools, and the economic literacy to know which series actually carry an institutional argument. It is a direct bridge between my data-visualization work and serious economic theory.