All Projects → ipython-books → Cookbook 2nd Code

ipython-books / Cookbook 2nd Code

Licence: mit
Code of the IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018 [read-only repository]

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Cookbook 2nd Code

Cookbook 2nd
IPython Cookbook, Second Edition, by Cyrille Rossant, Packt Publishing 2018
Stars: ✭ 704 (+30.13%)
Mutual labels:  ipython, jupyter-notebook, data-science, jupyter, data-analysis, data-mining, data-visualization
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-68.39%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-mining, data-visualization
Ml Workspace
🛠 All-in-one web-based IDE specialized for machine learning and data science.
Stars: ✭ 2,337 (+331.98%)
Mutual labels:  jupyter-notebook, data-science, jupyter, data-analysis, data-visualization
Amazing Feature Engineering
Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.
Stars: ✭ 218 (-59.7%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-mining, data-visualization
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+429.39%)
Mutual labels:  ipython, jupyter-notebook, data-science, data-analysis, data-visualization
Pydataroad
open source for wechat-official-account (ID: PyDataLab)
Stars: ✭ 302 (-44.18%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-mining, data-visualization
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-41.77%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Data Science Portfolio
A Portfolio of my Data Science Projects
Stars: ✭ 149 (-72.46%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Gwu data mining
Materials for GWU DNSC 6279 and DNSC 6290.
Stars: ✭ 217 (-59.89%)
Mutual labels:  jupyter-notebook, data-science, data-mining, data-visualization
Deep Learning Machine Learning Stock
Stock for Deep Learning and Machine Learning
Stars: ✭ 240 (-55.64%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Nteract
📘 The interactive computing suite for you! ✨
Stars: ✭ 5,713 (+956.01%)
Mutual labels:  ipython, jupyter-notebook, data-science, jupyter
Courses
Quiz & Assignment of Coursera
Stars: ✭ 454 (-16.08%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Articles
A repository for the source code, notebooks, data, files, and other assets used in the data science and machine learning articles on LearnDataSci
Stars: ✭ 350 (-35.3%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Quantitative Notebooks
Educational notebooks on quantitative finance, algorithmic trading, financial modelling and investment strategy
Stars: ✭ 356 (-34.2%)
Mutual labels:  jupyter-notebook, data-science, jupyter, data-analysis
Sci Pype
A Machine Learning API with native redis caching and export + import using S3. Analyze entire datasets using an API for building, training, testing, analyzing, extracting, importing, and archiving. This repository can run from a docker container or from the repository.
Stars: ✭ 90 (-83.36%)
Mutual labels:  ipython, jupyter-notebook, data-science, jupyter
Spark Py Notebooks
Apache Spark & Python (pySpark) tutorials for Big Data Analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 1,338 (+147.32%)
Mutual labels:  ipython, jupyter-notebook, data-science, data-analysis
Fantasy Basketball
Scraping statistics, predicting NBA player performance with neural networks and boosting algorithms, and optimising lineups for Draft Kings with genetic algorithm. Capstone Project for Machine Learning Engineer Nanodegree by Udacity.
Stars: ✭ 146 (-73.01%)
Mutual labels:  jupyter-notebook, data-science, data-mining, data-visualization
Datasist
A Python library for easy data analysis, visualization, exploration and modeling
Stars: ✭ 123 (-77.26%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization
Machine learning for good
Machine learning fundamentals lesson in interactive notebooks
Stars: ✭ 142 (-73.75%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-mining
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (-49.54%)
Mutual labels:  jupyter-notebook, data-science, data-analysis, data-visualization

Code of the IPython Cookbook, Second Edition (2018)

Binder

This repository contains the Jupyter notebooks of the 100+ recipes of IPython Interactive Computing and Visualization Cookbook, Second Edition (2018), by Cyrille Rossant, Packt Publishing.

This repository is read-only: the source files are on the cookbook-2nd repository.

Running the code in the cloud

With Binder, you can run most of the Jupyter notebooks directly from your web browser without installing anything. Just click on the launch binder button above. A temporary Jupyter Notebook server with all dependencies will be automatically launched in the cloud. It is not persistent: all your changes will be lost after some time.

Running the code on your computer

  1. Install git.

  2. Download and install Anaconda: choose the Python 3.6, 64-bit version for your operating system (macOS, Linux, or Windows).

  3. Open a terminal (cmd on Windows).

  4. Clone the repository:

$ git clone https://github.com/ipython-books/cookbook-2nd-code.git
$ cd cookbook-2nd-code
  1. Create the cookbook conda environment:
conda env create -f environment.yml
  1. Activate the environment:

    • On macOS and Linux:
    source activate cookbook
    
    • On Windows:
    activate cookbook
    
  2. Launch the Jupyter Notebook:

$ jupyter notebook
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].