Say I have two series: a and b,
a = Series(None, index=['a','b','c'])
b = Series('lol', index=['j','k','l'])
I would like to store b as one of the elements of a,
a['a'] = b
but I get
ValueError: setting an array element with a sequence.
Is it possible to store a pandas series inside a pandas series? How can I do it? Thanks.