Is it possible to create named expressions to use in annotate_cols programmatically?
Something along the lines:
for i in range(10):
mt = mt.annotate_cols(f'variable_{i}' = mt.variable == i)
This could be neat for quick one-hot encoding of categorical variables.