quantitative-literaturwissenschaft: some metre exploration, but does it work?

This commit is contained in:
2024-06-13 00:05:35 +02:00
parent 3ba064bded
commit cebd116b9e
2 changed files with 255 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (py: [
py.jupyter
py.numpy
py.pandas
py.matplotlib
py.scikit-learn
py.plotly
]))
];
}