DataFrame.readCsv from krangl would do it
# datascience
h
DataFrame.readCsv from krangl would do it
a
Yep and since DataFrame mostly copied krangl API, it looks almost the same.
e
yep, doing this atm
Copy code
%use krangl

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)

frame.head()