lidavidm commented on PR #13402:
URL: https://github.com/apache/arrow/pull/13402#issuecomment-1163004830
Actually, it turns out that integer column names are preserved:
```python
>>> pa.Table.from_pandas(pd.DataFrame({'123': [1]})).to_pandas().columns
Index(['123'], dtype='object')
>>> pa.Table.from_pandas(pd.DataFrame({123: [1]})).to_pandas().columns
Int64Index([123], dtype='int64')
```
Is this also the case here?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]