Skip to content

Commit 9ca8542

Browse files
committed
small fix in the examples notebook
(cherry picked from commit 435e47e)
1 parent 2310f93 commit 9ca8542

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

examples/notebooks/feature_overviews/0.15/new_features.ipynb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,11 @@
840840
"metadata": {},
841841
"cell_type": "markdown",
842842
"source": [
843-
"40 million rows! Not bad, right? Most of this speed increase is due to Deephaven CSV's ability to parse columns directly to the target type, like `Int`, or `Double`, instead of parsing everything as a `String` and then converting it. DataFrame still reads everything into (boxed) memory, so there are limits to the size of the file you can read, but now the CSV reader is not a limiting factor anymore.\n",
843+
"40 million rows! Not bad, right?\n",
844+
"\n",
845+
"The fact we can now read this file is due to Deephaven CSV's ability to parse columns directly to the target type, like `Int`, or `Double`, instead of reading and storing everything as a `String` first and then parsing it. This saves both memory and running time. Deephaven made a [blogpost](https://deephaven.io/blog/2022/02/23/csv-reader/) if you're curious about the specifics.\n",
846+
"\n",
847+
"DataFrame still reads everything into (boxed) memory, so there are limits to the size of the file you can read, but now the CSV reader is not a limiting factor anymore.\n",
844848
"\n",
845849
"Switching to the new API, in most cases, is as easy as swapping `readCSV` with `readCsv` (and `readTSV` with `readTsv`, etc.). However, there are a few differences in the API, so be sure to check the KDocs of the new functions.\n",
846850
"\n",
@@ -11573,7 +11577,7 @@
1157311577
"\n",
1157411578
"[Parsing](https://kotlin.github.io/dataframe/parse.html), in DataFrame, is a special case of [`convert`](https://kotlin.github.io/dataframe/convert.html).\n",
1157511579
"It can convert `String` columns to any other supported type by guessing.\n",
11576-
"This can be done manually, by calling `.parse()` on a dataframe, but it also happens automatically when reading from textual data, like CSV, or JSON.\n",
11580+
"This can be done manually, by calling `.parse()` on a dataframe, but it also happens automatically when reading from textual data, like CSV.\n",
1157711581
"\n",
1157811582
"In DataFrame 0.15:\n",
1157911583
"- The speed of parsing and guessing types has improved\n",

0 commit comments

Comments
 (0)