The Monoid instance for Frame provides a mechanism for
vertical concatenation of Frames. That is, f1 <> f2 will return
a new Frame with the rows of f1 followed by the rows of f2.
Horizontal Frame concatenation. That is, zipFrames f1 f2 will
return a Frame with as many rows as the smaller of f1 and f2
whose rows are the result of appending the columns of f2 to those
of f1.