I have a dataframe which look like this:
df = pandas.dataframe()
df.set_value(1,9,"AA1")
...
df.set_value(3,14,"FF3")
print(df)
9 10 11 13 14
1 AA1 BB1 CC1 DD1 FF1
2 AA2 BB2 CC2 DD2 FF2
3 AA3 BB3 CC3 DD3 FF3
For an other program I need to output it with columns 1 to 8 and 12, which are empty.
Is there a way to do without df.set_value(1,1,None)?