Skip to content
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

Create index and columns #4597

Merged
merged 8 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply changes
Co-authored-by: Avdhoot <50920321+avdhoottt@users.noreply.github.com>
  • Loading branch information
0-Brandon and avdhoottt authored May 12, 2024
commit dc53ad8dbcdd26b8dea74aa33eecf65145c0d836
2 changes: 1 addition & 1 deletion content/pandas/concepts/dataframe/terms/columns/columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CatalogContent:
- 'paths/computer-science'
---

The **`.columns`** attribute represents the column labels of the DataFrame. It returns an Index object and can be used to view or assign new values to the column labels.
The **`.columns`** attribute represents the column labels of the DataFrame. It returns an `Index` object and can be used to view or assign new values to the column labels.

## Syntax

Expand Down
2 changes: 1 addition & 1 deletion content/pandas/concepts/dataframe/terms/index/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CatalogContent:
- 'paths/computer-science'
---

The **`.index`** attribute represents the row labels (index) of the DataFrame. It returns an Index object and can be used to view or assign new values to the row labels.
The **`.index`** attribute represents the row labels (index) of the DataFrame. It returns an `Index` object and can be used to view or assign new values to the row labels.

## Syntax

Expand Down