DataFrame 1.0 Help

Spelling Conventions

While reading Kotlin DataFrame documentation, you may come across several similar terms referring to different concepts:

  • Kotlin DataFrame (or just "DataFrame") — the name of the official library.

  • dataframe — a general term for data in a tabular (frame) format.

  • DataFrame — a Kotlin type or its instance that represents a wrapper around a dataframe.

Here’s a correct usage example:

Kotlin DataFrame allows you to read a dataframe from a CSV file into a `DataFrame`.
22 August 2025