@@ -82,7 +82,7 @@ import kotlin.io.path.inputStream
82
82
*
83
83
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
84
84
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
85
- * Columns widths are determined by the header in the data (if present), or manually by setting
85
+ * Column widths are determined by the header in the data (if present), or manually by setting
86
86
* [fixedColumnWidths].
87
87
* @param fixedColumnWidths The fixed column widths. Default: empty list.
88
88
*
@@ -119,7 +119,7 @@ import kotlin.io.path.inputStream
119
119
* @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
120
120
*
121
121
* If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
122
- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
122
+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
123
123
*
124
124
* If `true`, rows that are too short will be interpreted as _empty_ values.
125
125
* @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -137,7 +137,7 @@ import kotlin.io.path.inputStream
137
137
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
138
138
*
139
139
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
140
- * This is usually faster, but can be turned off for debugging.
140
+ * This is usually faster but can be turned off for debugging.
141
141
*/
142
142
public fun DataFrame.Companion.readCsv (
143
143
path : Path ,
@@ -234,7 +234,7 @@ public fun DataFrame.Companion.readCsv(
234
234
*
235
235
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
236
236
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
237
- * Columns widths are determined by the header in the data (if present), or manually by setting
237
+ * Column widths are determined by the header in the data (if present), or manually by setting
238
238
* [fixedColumnWidths].
239
239
* @param fixedColumnWidths The fixed column widths. Default: empty list.
240
240
*
@@ -271,7 +271,7 @@ public fun DataFrame.Companion.readCsv(
271
271
* @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
272
272
*
273
273
* If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
274
- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
274
+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
275
275
*
276
276
* If `true`, rows that are too short will be interpreted as _empty_ values.
277
277
* @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -289,7 +289,7 @@ public fun DataFrame.Companion.readCsv(
289
289
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
290
290
*
291
291
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
292
- * This is usually faster, but can be turned off for debugging.
292
+ * This is usually faster but can be turned off for debugging.
293
293
*/
294
294
public fun DataFrame.Companion.readCsv (
295
295
file : File ,
@@ -386,7 +386,7 @@ public fun DataFrame.Companion.readCsv(
386
386
*
387
387
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
388
388
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
389
- * Columns widths are determined by the header in the data (if present), or manually by setting
389
+ * Column widths are determined by the header in the data (if present), or manually by setting
390
390
* [fixedColumnWidths].
391
391
* @param fixedColumnWidths The fixed column widths. Default: empty list.
392
392
*
@@ -423,7 +423,7 @@ public fun DataFrame.Companion.readCsv(
423
423
* @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
424
424
*
425
425
* If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
426
- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
426
+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
427
427
*
428
428
* If `true`, rows that are too short will be interpreted as _empty_ values.
429
429
* @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -441,7 +441,7 @@ public fun DataFrame.Companion.readCsv(
441
441
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
442
442
*
443
443
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
444
- * This is usually faster, but can be turned off for debugging.
444
+ * This is usually faster but can be turned off for debugging.
445
445
*/
446
446
public fun DataFrame.Companion.readCsv (
447
447
url : URL ,
@@ -538,7 +538,7 @@ public fun DataFrame.Companion.readCsv(
538
538
*
539
539
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
540
540
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
541
- * Columns widths are determined by the header in the data (if present), or manually by setting
541
+ * Column widths are determined by the header in the data (if present), or manually by setting
542
542
* [fixedColumnWidths].
543
543
* @param fixedColumnWidths The fixed column widths. Default: empty list.
544
544
*
@@ -575,7 +575,7 @@ public fun DataFrame.Companion.readCsv(
575
575
* @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
576
576
*
577
577
* If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
578
- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
578
+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
579
579
*
580
580
* If `true`, rows that are too short will be interpreted as _empty_ values.
581
581
* @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -593,7 +593,7 @@ public fun DataFrame.Companion.readCsv(
593
593
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
594
594
*
595
595
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
596
- * This is usually faster, but can be turned off for debugging.
596
+ * This is usually faster but can be turned off for debugging.
597
597
*/
598
598
public fun DataFrame.Companion.readCsv (
599
599
fileOrUrl : String ,
@@ -690,7 +690,7 @@ public fun DataFrame.Companion.readCsv(
690
690
*
691
691
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
692
692
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
693
- * Columns widths are determined by the header in the data (if present), or manually by setting
693
+ * Column widths are determined by the header in the data (if present), or manually by setting
694
694
* [fixedColumnWidths].
695
695
* @param fixedColumnWidths The fixed column widths. Default: empty list.
696
696
*
@@ -727,7 +727,7 @@ public fun DataFrame.Companion.readCsv(
727
727
* @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
728
728
*
729
729
* If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
730
- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
730
+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
731
731
*
732
732
* If `true`, rows that are too short will be interpreted as _empty_ values.
733
733
* @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -745,7 +745,7 @@ public fun DataFrame.Companion.readCsv(
745
745
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
746
746
*
747
747
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
748
- * This is usually faster, but can be turned off for debugging.
748
+ * This is usually faster but can be turned off for debugging.
749
749
* @param adjustCsvSpecs Optional extra [CsvSpecs] configuration. Default: `{ it }`.
750
750
*
751
751
* Before instantiating the [CsvSpecs], the [CsvSpecs.Builder] will be passed to this lambda.
0 commit comments