Files
2026-02-08 11:20:43 -10:00

26 lines
959 B
Markdown
Vendored
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Spelling Conventions
<web-summary>
Clarifies naming conventions used in Kotlin DataFrame documentation for the library, data format, and Kotlin type.
</web-summary>
<card-summary>
Understand how to distinguish between "Kotlin DataFrame", "dataframe", and `DataFrame` in the documentation.
</card-summary>
<link-summary>
Spelling and naming rules for using "Kotlin DataFrame", "dataframe", and `DataFrame` properly.
</link-summary>
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`](DataFrame.md) — a Kotlin type or its instance that represents a wrapper around a dataframe.
Heres a correct usage example:
```markdown
Kotlin DataFrame allows you to read a dataframe from a CSV file into a `DataFrame`.
```