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

Introduce NamedColumn concept in cudf-polars #15914

Merged
Merged
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
Typo in numbered list
  • Loading branch information
wence- committed Jun 6, 2024
commit d46e4b856afb16374403f225f9ecc9c4709a8a54
2 changes: 1 addition & 1 deletion python/cudf_polars/docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ around their pylibcudf counterparts. We have four (in
1. `Scalar` (a wrapper around a pylibcudf `Scalar`)
2. `Column` (a wrapper around a pylibcudf `Column`)
3. `NamedColumn` a `Column` with an additional name
3. `DataFrame` (a wrapper around a pylibcudf `Table`)
4. `DataFrame` (a wrapper around a pylibcudf `Table`)

The interfaces offered by these are somewhat in flux, but broadly
speaking, a `DataFrame` is just a list of `NamedColumn`s which each
Expand Down
Loading