SyntaxFix
Write A Post
Hire A Developer
Questions
How about this:
from pandas import * idx = Int64Index([171, 174, 173]) df = DataFrame(index = idx, data =([1,2,3])) print df
It gives me:
0 171 1 174 2 173 3
Is this what you are looking for?