Skip to content

Commit d703ff0

Browse files
committed
using the correct %dataFrameVersion% in docs this time. Post-PR #1705 hotfix
1 parent fcb738c commit d703ff0

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

docs/StardustDocs/topics/read.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ The input string can be a file path or URL.
3636
Before 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

4444
To read a CSV file, use the `.readCsv()` function.
4545

@@ -305,10 +305,10 @@ val df = DataFrame.readCsv(
305305
Before 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

313313
To 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.
536536
Before 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

544544
To read an Excel spreadsheet, use the `.readExcel()` function. Excel spreadsheets can be read from a file or a URL. Supported
545545
Excel spreadsheet formats are: xls, xlsx.
@@ -588,10 +588,10 @@ val df = DataFrame.readExcel("mixed_column.xlsx", stringColumns = StringColumns(
588588
Before 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

596596
To read Apache Arrow formats, use the `.readArrowFeather()` function:
597597

docs/StardustDocs/topics/readSqlDatabases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Also, there are a few **extension functions** available on `Connection`,
6363
First, you need to add the dependency
6464

6565
```kotlin
66-
implementation("org.jetbrains.kotlinx:dataframe-jdbc:%dataframeVersion%")
66+
implementation("org.jetbrains.kotlinx:dataframe-jdbc:%dataFrameVersion%")
6767
```
6868

6969
after that, you need to add the dependency for the database's JDBC driver, for example

docs/StardustDocs/topics/readSqlFromCustomDatabase.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ Add the following dependencies and dataframe plugin to your `build.gradle.kts`:
2121

2222
```kotlin
2323
plugins {
24-
id("org.jetbrains.kotlinx.dataframe") version "%dataframeVersion%"
24+
id("org.jetbrains.kotlinx.dataframe") version "%dataFrameVersion%"
2525
}
2626

2727
dependencies {
28-
implementation("org.jetbrains.kotlinx:dataframe:%dataframeVersion%")
28+
implementation("org.jetbrains.kotlinx:dataframe:%dataFrameVersion%")
2929
implementation("org.hsqldb:hsqldb:$version")
3030
}
3131
```

docs/StardustDocs/topics/schemas/gradle/schemasImportOpenApiGradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ get enums, correct inheritance and overall better type safety.
2727
First of all, you will need the extra dependency:
2828

2929
```kotlin
30-
implementation("org.jetbrains.kotlinx:dataframe-openapi:%dataframeVersion%")
30+
implementation("org.jetbrains.kotlinx:dataframe-openapi:%dataFrameVersion%")
3131
```
3232

3333
OpenAPI type schemas can be generated using both methods described above:

docs/StardustDocs/topics/write.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ val jsonStr = df.toJson(prettyPrint = true)
5454
Add dependency:
5555

5656
```kotlin
57-
implementation("org.jetbrains.kotlinx:dataframe-excel:%dataframeVersion%")
57+
implementation("org.jetbrains.kotlinx:dataframe-excel:%dataFrameVersion%")
5858
```
5959

6060
You can write your [`DataFrame`](DataFrame.md) in XLS, XLSX format to a file, `OutputStream` or Workbook object.
@@ -141,7 +141,7 @@ df.filter { person -> !person.isHappy }.remove("isHappy")
141141
Add dependency:
142142

143143
```kotlin
144-
implementation("org.jetbrains.kotlinx:dataframe-arrow:%dataframeVersion%")
144+
implementation("org.jetbrains.kotlinx:dataframe-arrow:%dataFrameVersion%")
145145
```
146146

147147
> Make sure to follow an

0 commit comments

Comments
 (0)