init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
@@ -0,0 +1,25 @@
# 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`.
```