Initial commit

This commit is contained in:
coolneng 2020-11-18 17:47:44 +01:00
commit 29f6cd9a21
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 89532 additions and 0 deletions

89520
data/accidentes_2013.csv Normal file

File diff suppressed because it is too large Load Diff

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
python38
python38Packages.pandas
python38Packages.scikitlearn
python38Packages.seaborn
];
}