I'm running a very long for loop with many variables and functions, and need to save the results in lists. Therefore, I want to prepare empty lists before hand. I can do it like this, but it's ugly and makes me uncomfortable:
df = list()
EV = list()
var = list()
design = list()
contrast = list()
d = list()
Is there a better way? thanks.