WiNDC State Disaggregation
December 05, 2025
An early build of the WiNDC State Disaggregation tool is now available in the open PR in WiNDCRegional.jl. This post will demonstrate how to build the data and provide a rough overview of the disaggregation methodology. Read more
The WiNDC Household Data
November 21, 2025
The WiNDC household data was created and has been maintained by Drew Schreiber. The data is pulled from a variety of sources using a sequence of R scripts. I am working on converting these methods into Julia, however I also need to be mindful of future maintenance in light of WiNDC funding. To that end, I am planning to create an R package that will contain the household data processing methods. Julia has the ability to call R code using the RCall.jl package, so this will allow me to use the R package within Julia scripts until I have time to write a native solution. Read more
Updating WiNDCNational with the Latest US Data
November 14, 2025
The United States released 2024 updates to Supply/Use tables a few months ago. I have been working on a larger project and have not yet had time to view the updates and incorporate them into WiNDCNational. This past week I spent some time refining WiNDCNational and updating the documentation. Read more
Converting an NLP CGE Model to MPSGE
November 07, 2025
This weeks blog post is going to be a little different. I created an example converting an NLP CGE model to MPSGE. You can find the code here and the documentation here. The repository contains all the code needed to run the models and compare the solutions. Read more
Creating Julia Packages
October 31, 2025
It is entirely possible to write all your Julia code in a single script file. However, as your projects grow in size and complexity, organizing your code into packages can provide significant benefits. Today I’ll discuss how to create and manage Julia packages effectively. Read more