0

I have a df, and when I run df.columns, I get the result in the screenshot I am attaching. I do not understand what is the result in red referring to. Furthermore, I would like to have no "name".

screenshot

2 Answers 2

3

Use rename_axis:

ri_2 = ri_2.rename_axis(None, axis=1)
Sign up to request clarification or add additional context in comments.

Comments

1

A simplified picture of what is df.columns is "it is a list of column names".

But it is only a simplified view. Actually it is an Index, something like a pandasonic Series, so it can have a name (as each Series).

One of possible options is to set it to None:

df.columns.name = None

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.