koalasEasy Examples

Pandas-like API on Apache Spark (now merged into PySpark)

Getting started with koalas

Installation and basic usage of koalas.

python
# Install: pip install pyspark
import koalas

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

koalas is a third-party package. Pandas-like API on Apache Spark (now merged into PySpark). Install with: pip install pyspark

Common koalas operations

Frequently used features of koalas.

python
# Install: pip install pyspark
import koalas

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

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

Want to try these examples interactively?

Open Easy Playground