cudfEasy Examples

GPU-accelerated DataFrame library by NVIDIA (RAPIDS)

Getting started with cudf

Installation and basic usage of cudf.

python
# Install: pip install cudf-cu12 --extra-index-url=https://pypi.nvidia.com
import cudf

# Basic cudf usage
print(f"Using cudf")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: cudf)

cudf is a third-party package. GPU-accelerated DataFrame library by NVIDIA (RAPIDS). Install with: pip install cudf-cu12 --extra-index-url=https://pypi.nvidia.com

Common cudf operations

Frequently used features of cudf.

python
# Install: pip install cudf-cu12 --extra-index-url=https://pypi.nvidia.com
import cudf

# Common cudf patterns
print(f"cudf version: {cudf.__version__}")

These are the most commonly used features of cudf in everyday development.

Want to try these examples interactively?

Open Easy Playground