elect
09/10/2021, 12:47 PMaltavir
09/10/2021, 12:54 PM%use dataframe
val frame = DataFrame.readCSV("Your url here")
elect
09/10/2021, 1:04 PMWhen DataFrame is used within Jupyter Notebooks with Kotlin Kernel there is even more type safe way to access data. After every REPL line execution all new global variables of typeI didare analyzed and replaced with typedDataFrame
wrapper with auto-generated extension properties for data accessDataFrame
%use dataframe
val url = "<https://raw.githubusercontent.com/robert-koch-institut/COVID-19-Impfungen_in_Deutschland/master/Aktuell_Deutschland_Landkreise_COVID-19-Impfungen.csv>"
val frame = DataFrame.readCSV(url)
but on frame
I don't get accessor..
what's a "REPL line execution"?altavir
09/10/2021, 1:04 PMaltavir
09/10/2021, 1:05 PMaltavir
09/10/2021, 1:05 PMelect
09/10/2021, 1:07 PMaltavir
09/10/2021, 1:08 PMaltavir
09/10/2021, 1:09 PMelect
09/10/2021, 1:29 PMLocalDate
?
Line_120.jupyter-kts (5:15 - 24) Unresolved reference: LocalDate
altavir
09/10/2021, 1:31 PMimport
statement to one of the cells.