@@ -36,10 +36,10 @@ The input string can be a file path or URL.
3636Before you can read data from CSV, make sure you have the following dependency:
3737
3838``` kotlin
39- implementation(" org.jetbrains.kotlinx:dataframe-csv:%dataframeVersion %" )
39+ implementation(" org.jetbrains.kotlinx:dataframe-csv:%dataFrameVersion %" )
4040```
4141
42- It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataframeVersion % ` already.
42+ It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataFrameVersion % ` already.
4343
4444To read a CSV file, use the ` .readCsv() ` function.
4545
@@ -305,10 +305,10 @@ val df = DataFrame.readCsv(
305305Before you can read data from JSON, make sure you have the following dependency:
306306
307307``` kotlin
308- implementation(" org.jetbrains.kotlinx:dataframe-json:%dataframeVersion %" )
308+ implementation(" org.jetbrains.kotlinx:dataframe-json:%dataFrameVersion %" )
309309```
310310
311- It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataframeVersion % ` already.
311+ It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataFrameVersion % ` already.
312312
313313To read a JSON file, use the ` .readJson() ` function. JSON files can be read from a file or a URL.
314314
@@ -536,10 +536,10 @@ For more examples, see the "examples/json" module.
536536Before you can read data from Excel, add the following dependency:
537537
538538``` kotlin
539- implementation(" org.jetbrains.kotlinx:dataframe-excel:%dataframeVersion %" )
539+ implementation(" org.jetbrains.kotlinx:dataframe-excel:%dataFrameVersion %" )
540540```
541541
542- It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataframeVersion % ` already.
542+ It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataFrameVersion % ` already.
543543
544544To read an Excel spreadsheet, use the ` .readExcel() ` function. Excel spreadsheets can be read from a file or a URL. Supported
545545Excel spreadsheet formats are: xls, xlsx.
@@ -588,10 +588,10 @@ val df = DataFrame.readExcel("mixed_column.xlsx", stringColumns = StringColumns(
588588Before you can read data from Apache Arrow format, add the following dependency:
589589
590590``` kotlin
591- implementation(" org.jetbrains.kotlinx:dataframe-arrow:%dataframeVersion %" )
591+ implementation(" org.jetbrains.kotlinx:dataframe-arrow:%dataFrameVersion %" )
592592```
593593
594- It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataframeVersion % ` already.
594+ It's included by default if you have ` org.jetbrains.kotlinx:dataframe:%dataFrameVersion % ` already.
595595
596596To read Apache Arrow formats, use the ` .readArrowFeather() ` function:
597597
0 commit comments