Inputs to the article about dataframes

pull/4/head
vaclavdekanovsky 2021-01-08 23:39:00 +01:00
parent 7cd16bfea8
commit 88aae54fb6
3 changed files with 1854 additions and 0 deletions

1258
DataFrames/ALL.ipynb 100644

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -5,6 +5,9 @@
"metadata": {},
"source": [
"## Reading a CSV file to a DataFrame in Julia (programing lang)\n",
"\n",
"Article: https://towardsdatascience.com/read-csv-to-data-frame-in-julia-programming-lang-77f3d0081c14\n",
"\n",
"Julia often offer several ways how to do the same thing and reading CSV is an example. In all cases, you will need the `CSV` and `DataFrames` package. If you don't have them installed, in the Julia REPL run: `import Pkg; Pkg.add(\"CSV\"); Pkg.add(\"DataFrames\")`"
]
},