How Do I add a single item to a serialized panda series. I know it's not the most efficient way memory wise, but i still need to do that.
Something along:
>> x = Series()
>> N = 4
>> for i in xrange(N):
>> x.some_appending_function(i**2)
>> print x
0 | 0
1 | 1
2 | 4
3 | 9
also, how can i add a single row to a pandas DataFrame?