You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note, when you reindex the columns to be the other way around by removing the # in front of the line exdf = exdf.reindex ... then you get:
'3.14, 12, aoe,\n5.67, 34, qjk,'
^^no extra space!
where one can easily see, that usually, as it is correct, the first element in the line does NOT get a space. Therefore I consider this a formatting bug for (string) objects.
The text was updated successfully, but these errors were encountered:
FYI, I am using to_string() and not to_csv(), because I need spaces behind the comma that is currently not possible with to_csv(). Also, to_csv() does not accept a formatting dictionary.
pd.__version__
'0.12.0.dev-6a0b9ec'
' aoe, 12, 3.14,\n qjk, 34, 5.67,'
^^extra space!
Note, when you reindex the columns to be the other way around by removing the # in front of the line
exdf = exdf.reindex ...
then you get:'3.14, 12, aoe,\n5.67, 34, qjk,'
^^no extra space!
where one can easily see, that usually, as it is correct, the first element in the line does NOT get a space. Therefore I consider this a formatting bug for (string) objects.
The text was updated successfully, but these errors were encountered: