├── Chapter02 ├── code │ ├── Chapter02.R │ └── functions.R └── data │ ├── varlabels.txt │ └── vehicles.csv.zip ├── Chapter03 ├── code │ ├── explore.py │ ├── explore_numpy.py │ ├── report-20140702.html │ ├── reporting.py │ ├── templates │ │ └── report.html │ └── trends.py └── data │ ├── field_descriptions.csv │ ├── headers.txt │ └── income_dist.csv ├── Chapter04 ├── code │ ├── .Rhistory │ └── Chapter04.R └── data │ └── finviz.csv ├── Chapter05 ├── Code │ └── Chapter05.R └── data │ └── 2012_annual_singlefile.zip ├── Chapter06 ├── code │ └── fuel_efficiency_python.ipynb └── data │ ├── varlabels.txt │ └── vehicles.csv.zip ├── Chapter07 ├── code │ ├── centrality.py │ ├── cluster.py │ ├── etl2neo.py │ ├── genfig.py │ ├── graph.py │ └── rgraph.py └── data │ ├── comic-hero-network.gdf │ ├── comic-heros.cql │ ├── hero-network.csv │ ├── porgat.txt │ └── source.csv ├── Chapter08 ├── code │ ├── model.py │ ├── reccod.pickle.gz │ ├── sim.py │ └── svd.py └── data │ └── ml-100k.zip ├── Chapter09 └── code │ └── Chapter9.py ├── Chapter10 └── code │ └── Chapter10.py ├── Chapter11 └── Chapter11.py ├── LICENSE └── README.md /Chapter02/code/Chapter02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter02/code/Chapter02.R -------------------------------------------------------------------------------- /Chapter02/code/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter02/code/functions.R -------------------------------------------------------------------------------- /Chapter02/data/varlabels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter02/data/varlabels.txt -------------------------------------------------------------------------------- /Chapter02/data/vehicles.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter02/data/vehicles.csv.zip -------------------------------------------------------------------------------- /Chapter03/code/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/explore.py -------------------------------------------------------------------------------- /Chapter03/code/explore_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/explore_numpy.py -------------------------------------------------------------------------------- /Chapter03/code/report-20140702.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/report-20140702.html -------------------------------------------------------------------------------- /Chapter03/code/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/reporting.py -------------------------------------------------------------------------------- /Chapter03/code/templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/templates/report.html -------------------------------------------------------------------------------- /Chapter03/code/trends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/code/trends.py -------------------------------------------------------------------------------- /Chapter03/data/field_descriptions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/data/field_descriptions.csv -------------------------------------------------------------------------------- /Chapter03/data/headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/data/headers.txt -------------------------------------------------------------------------------- /Chapter03/data/income_dist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter03/data/income_dist.csv -------------------------------------------------------------------------------- /Chapter04/code/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/Chapter04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter04/code/Chapter04.R -------------------------------------------------------------------------------- /Chapter04/data/finviz.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter04/data/finviz.csv -------------------------------------------------------------------------------- /Chapter05/Code/Chapter05.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter05/Code/Chapter05.R -------------------------------------------------------------------------------- /Chapter05/data/2012_annual_singlefile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter05/data/2012_annual_singlefile.zip -------------------------------------------------------------------------------- /Chapter06/code/fuel_efficiency_python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter06/code/fuel_efficiency_python.ipynb -------------------------------------------------------------------------------- /Chapter06/data/varlabels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter06/data/varlabels.txt -------------------------------------------------------------------------------- /Chapter06/data/vehicles.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter06/data/vehicles.csv.zip -------------------------------------------------------------------------------- /Chapter07/code/centrality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/centrality.py -------------------------------------------------------------------------------- /Chapter07/code/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/cluster.py -------------------------------------------------------------------------------- /Chapter07/code/etl2neo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/etl2neo.py -------------------------------------------------------------------------------- /Chapter07/code/genfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/genfig.py -------------------------------------------------------------------------------- /Chapter07/code/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/graph.py -------------------------------------------------------------------------------- /Chapter07/code/rgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/code/rgraph.py -------------------------------------------------------------------------------- /Chapter07/data/comic-hero-network.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/data/comic-hero-network.gdf -------------------------------------------------------------------------------- /Chapter07/data/comic-heros.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/data/comic-heros.cql -------------------------------------------------------------------------------- /Chapter07/data/hero-network.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/data/hero-network.csv -------------------------------------------------------------------------------- /Chapter07/data/porgat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/data/porgat.txt -------------------------------------------------------------------------------- /Chapter07/data/source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter07/data/source.csv -------------------------------------------------------------------------------- /Chapter08/code/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter08/code/model.py -------------------------------------------------------------------------------- /Chapter08/code/reccod.pickle.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter08/code/reccod.pickle.gz -------------------------------------------------------------------------------- /Chapter08/code/sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter08/code/sim.py -------------------------------------------------------------------------------- /Chapter08/code/svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter08/code/svd.py -------------------------------------------------------------------------------- /Chapter08/data/ml-100k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter08/data/ml-100k.zip -------------------------------------------------------------------------------- /Chapter09/code/Chapter9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter09/code/Chapter9.py -------------------------------------------------------------------------------- /Chapter10/code/Chapter10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter10/code/Chapter10.py -------------------------------------------------------------------------------- /Chapter11/Chapter11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/Chapter11/Chapter11.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Practical-Data-Science-Cookbook-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------