What’s the cleanest, most pythonic way to run a regression only on non-missing data and use clustered standard errors? Imagine I have a Pandas dataframe all_data. Clunky method that works (make a dataframe without missing data): I can make a new dataframe without the missing data, make the model, and fit the model: This feels a bit clunky (esp. when