When you're scrolling a dataFrame, integer columns like [0 1 2 3 4] are displayed as [0.0 1.0 2.0 3.0 4.0]. Whatever the solution, this seems like undesirable behavior. Ints should be printed as ints, so as to best preserve the information of the underlying data.
When you're
scrolling a dataFrame, integer columns like[0 1 2 3 4]are displayed as[0.0 1.0 2.0 3.0 4.0]. Whatever the solution, this seems like undesirable behavior. Ints should be printed as ints, so as to best preserve the information of the underlying data.