I have a list of astropy tables and I want to vstack them all using a loop.
This is what I have:
tables = []
for i in range(len(sortedfiles)): tables.append(openfits(sortedfiles[i]))
which creates a list where each element is an astropy table. I have a total of 144 such tables.
I want to vertically stack them so I have effectively just the one astropy table but I cannot think of the right kind of loop. Any ideas? TIA