Initial commit

This commit is contained in:
2020-11-18 17:47:44 +01:00
commit 29f6cd9a21
2 changed files with 89532 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+12
View File
@@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
python38
python38Packages.pandas
python38Packages.scikitlearn
python38Packages.seaborn
];
}