├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitignore ├── .vscode └── extensions.json ├── Chapter02 └── Chapter2.dib ├── Chapter03 ├── Chapter3.dib ├── DadJokes.sql ├── FootballClub.cs ├── FootballPlayer.cs ├── Game.cs ├── NestedNotebook.dib ├── Players.csv └── Players.tsv ├── Chapter04 ├── Chapter4.dib ├── ClubGames.csv ├── Clubs.csv ├── JoinedStats.csv ├── PlayerGameStats.csv └── Players.csv ├── Chapter05 ├── Chapter5.dib └── JoinedStats.csv ├── Chapter06 ├── Chapter6.dib └── JoinedStats.csv ├── Chapter07 ├── Chapter7.dib └── PlayerRetirement.csv ├── Chapter08 ├── Chapter8.dib ├── JoinedStats.csv └── training.csv ├── Chapter09 ├── Chapter9.dib ├── TunerPerf.csv └── training.csv ├── Chapter10 ├── Chapter10.dib └── WinLossPredictorApi │ ├── .vscode │ └── extensions.json │ ├── PredictionRequest.cs │ ├── PredictionResult.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── WinLossPredictor.zip │ ├── WinLossPredictorApi.csproj │ ├── WinLossPredictorApi.http │ ├── WinLossPredictorApi.sln │ ├── appsettings.Development.json │ └── appsettings.json ├── Chapter11 └── Chapter11.dib ├── Chapter12 └── Chapter12.dib ├── Chapter13 └── Chapter13.dib ├── Chapter14 ├── Chapter14.dib └── Footballers.json ├── LICENSE ├── Misc ├── Adapter.dib ├── BinaryClassify.dib ├── Broad.dib ├── Cars.dib ├── CarsClustering.dib ├── DataGenerator.dib ├── DataNeeds.dib ├── EDA.dib ├── Illustrations.dib ├── Merge.dib ├── Powershell.dib └── Retirement.dib ├── README.md └── data ├── ClubGames.csv ├── Clubs.csv ├── Games.csv ├── PlayerGameStats.csv ├── Players.csv ├── books.csv ├── season_stats.csv └── winloss.csv /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter02/Chapter2.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter02/Chapter2.dib -------------------------------------------------------------------------------- /Chapter03/Chapter3.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/Chapter3.dib -------------------------------------------------------------------------------- /Chapter03/DadJokes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/DadJokes.sql -------------------------------------------------------------------------------- /Chapter03/FootballClub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/FootballClub.cs -------------------------------------------------------------------------------- /Chapter03/FootballPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/FootballPlayer.cs -------------------------------------------------------------------------------- /Chapter03/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/Game.cs -------------------------------------------------------------------------------- /Chapter03/NestedNotebook.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/NestedNotebook.dib -------------------------------------------------------------------------------- /Chapter03/Players.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/Players.csv -------------------------------------------------------------------------------- /Chapter03/Players.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter03/Players.tsv -------------------------------------------------------------------------------- /Chapter04/Chapter4.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/Chapter4.dib -------------------------------------------------------------------------------- /Chapter04/ClubGames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/ClubGames.csv -------------------------------------------------------------------------------- /Chapter04/Clubs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/Clubs.csv -------------------------------------------------------------------------------- /Chapter04/JoinedStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/JoinedStats.csv -------------------------------------------------------------------------------- /Chapter04/PlayerGameStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/PlayerGameStats.csv -------------------------------------------------------------------------------- /Chapter04/Players.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter04/Players.csv -------------------------------------------------------------------------------- /Chapter05/Chapter5.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter05/Chapter5.dib -------------------------------------------------------------------------------- /Chapter05/JoinedStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter05/JoinedStats.csv -------------------------------------------------------------------------------- /Chapter06/Chapter6.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter06/Chapter6.dib -------------------------------------------------------------------------------- /Chapter06/JoinedStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter06/JoinedStats.csv -------------------------------------------------------------------------------- /Chapter07/Chapter7.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter07/Chapter7.dib -------------------------------------------------------------------------------- /Chapter07/PlayerRetirement.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter07/PlayerRetirement.csv -------------------------------------------------------------------------------- /Chapter08/Chapter8.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter08/Chapter8.dib -------------------------------------------------------------------------------- /Chapter08/JoinedStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter08/JoinedStats.csv -------------------------------------------------------------------------------- /Chapter08/training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter08/training.csv -------------------------------------------------------------------------------- /Chapter09/Chapter9.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter09/Chapter9.dib -------------------------------------------------------------------------------- /Chapter09/TunerPerf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter09/TunerPerf.csv -------------------------------------------------------------------------------- /Chapter09/training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter09/training.csv -------------------------------------------------------------------------------- /Chapter10/Chapter10.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/Chapter10.dib -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/PredictionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/PredictionRequest.cs -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/PredictionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/PredictionResult.cs -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/Program.cs -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/WinLossPredictor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/WinLossPredictor.zip -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/WinLossPredictorApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/WinLossPredictorApi.csproj -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/WinLossPredictorApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/WinLossPredictorApi.http -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/WinLossPredictorApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/WinLossPredictorApi.sln -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter10/WinLossPredictorApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter10/WinLossPredictorApi/appsettings.json -------------------------------------------------------------------------------- /Chapter11/Chapter11.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter11/Chapter11.dib -------------------------------------------------------------------------------- /Chapter12/Chapter12.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter12/Chapter12.dib -------------------------------------------------------------------------------- /Chapter13/Chapter13.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter13/Chapter13.dib -------------------------------------------------------------------------------- /Chapter14/Chapter14.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter14/Chapter14.dib -------------------------------------------------------------------------------- /Chapter14/Footballers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Chapter14/Footballers.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /Misc/Adapter.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Adapter.dib -------------------------------------------------------------------------------- /Misc/BinaryClassify.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/BinaryClassify.dib -------------------------------------------------------------------------------- /Misc/Broad.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Broad.dib -------------------------------------------------------------------------------- /Misc/Cars.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Cars.dib -------------------------------------------------------------------------------- /Misc/CarsClustering.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/CarsClustering.dib -------------------------------------------------------------------------------- /Misc/DataGenerator.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/DataGenerator.dib -------------------------------------------------------------------------------- /Misc/DataNeeds.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/DataNeeds.dib -------------------------------------------------------------------------------- /Misc/EDA.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/EDA.dib -------------------------------------------------------------------------------- /Misc/Illustrations.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Illustrations.dib -------------------------------------------------------------------------------- /Misc/Merge.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Merge.dib -------------------------------------------------------------------------------- /Misc/Powershell.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Powershell.dib -------------------------------------------------------------------------------- /Misc/Retirement.dib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/Misc/Retirement.dib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/README.md -------------------------------------------------------------------------------- /data/ClubGames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/ClubGames.csv -------------------------------------------------------------------------------- /data/Clubs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/Clubs.csv -------------------------------------------------------------------------------- /data/Games.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/Games.csv -------------------------------------------------------------------------------- /data/PlayerGameStats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/PlayerGameStats.csv -------------------------------------------------------------------------------- /data/Players.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/Players.csv -------------------------------------------------------------------------------- /data/books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/books.csv -------------------------------------------------------------------------------- /data/season_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/season_stats.csv -------------------------------------------------------------------------------- /data/winloss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Data-Science-with-.NET-and-Polyglot-Notebooks/HEAD/data/winloss.csv --------------------------------------------------------------------------------