Probably simple question, but I can't find any reference. What is the most convenient way to convert categorical variable to a set of dummy vars? So far I've been using
int(indicatormat(df[:categoricalvar])) but it's pretty annoying to do it for every variable, give every indicator a name, resolve collinearity, etc. Is there any standard way to do these operations?
