Skip to content

Commit be88531

Browse files
committed
updating some more usages of readCSV to readCsv
1 parent 1e2bb06 commit be88531

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/idea-examples/titanic/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/titanic/ml/titanic.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fun main() {
3232
// Set Locale for correct number parsing
3333
Locale.setDefault(Locale.FRANCE)
3434

35-
val df = Passenger.readCSV()
35+
val df = Passenger.readCsv()
3636

3737
// Calculating imputing values
3838
val (train, test) = df

examples/notebooks/netflix/netflix.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23323,7 +23323,7 @@
2332323323
}
2332423324
},
2332523325
"source": [
23326-
"val countries = DataFrame.readCSV(\"country_codes.csv\")\n",
23326+
"val countries = DataFrame.readCsv(\"country_codes.csv\")\n",
2332723327
"countries.head()"
2332823328
],
2332923329
"outputs": [

examples/notebooks/titanic/Titanic.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"source": [
27-
"val df = DataFrame.readCSV(\n",
27+
"val df = DataFrame.readCsv(\n",
2828
" fileOrUrl = \"../../idea-examples/titanic/src/main/resources/titanic.csv\",\n",
2929
" delimiter = ';',\n",
3030
" parserOptions = ParserOptions(locale = java.util.Locale.FRENCH),\n",

examples/notebooks/wine/WineNetWIthKotlinDL.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
}
4949
},
5050
"source": [
51-
"val rawDf = DataFrame.readCSV(fileOrUrl = \"winequality-red.csv\", delimiter = ';')\n",
51+
"val rawDf = DataFrame.readCsv(fileOrUrl = \"winequality-red.csv\", delimiter = ';')\n",
5252
"rawDf.head()"
5353
],
5454
"outputs": [

0 commit comments

Comments
 (0)