-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: support using letters as column names in read_excel #54552
Comments
I added the English translation. |
Use the |
使用names参数可以实现,我也是这么做的。但似乎可以更简便一点。因为excel使用A,B,...Z,AA,AB...是更常见的方法。比如names=letter,read_excel就自动将列索引从1,2,3...,改为A,B,C... |
@rhshadrach Does this issue require further discussion or can I work on creating a PR? |
@rmhowe425 - what do you think proper resolution of this issue would entail? |
I'm currently -1 here, users are able to do this via:
|
agree with @rhshadrach here, closing |
Feature Type
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Problem Description
目前,如果head=None,则dataframe的column为1,2,3,4,……
Currently, if header=None, the column names are "1, 2, 3, 4, ......" by default.
Feature Description
建议加入一个参数,在head=None时,可以将dataframe的column设置A,B,C,D,……
Add another parameter so that when header=None, users can set the column name to "A, B, C, D, ......"
Alternative Solutions
无
None
Additional Context
No response
The text was updated successfully, but these errors were encountered: