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
+13
View File
@@ -0,0 +1,13 @@
[//]: # (title: Jupyter Notebooks)
Rendering in Jupyter Notebooks can be configured using `dataFrameConfig.display` value.
Have a look at [toHTML](toHTML.md#configuring-display-for-individual-output) function to configure output for single cell
### Content limit length
Content in each cell gets truncated to 40 characters by default.
This can be changed by setting `cellContentLimit` to a different value on the display configuration.
```kotlin
dataFrameConfig.display.cellContentLimit = 100
```