All Projects → mdeff → python_tour_of_data_science

mdeff / python_tour_of_data_science

Licence: MIT License
A Python Tour of Data Science

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to python tour of data science

Resumos EMAP-FGV
Repositório de resumos do curso de Matemática Aplicada da FGV-EMAP
Stars: ✭ 23 (-17.86%)
Mutual labels:  education
swift-algorithms-data-structs
📒 Algorithms and Data Structures in Swift. The used approach attempts to fully utilize the Swift Standard Library and Protocol-Oriented paradigm.
Stars: ✭ 42 (+50%)
Mutual labels:  education
trading sim
📈📆 Backtest trading strategies concurrently using historical chart data from various financial exchanges.
Stars: ✭ 21 (-25%)
Mutual labels:  data-analysis
twitter-analytics-wrapper
A simple Python wrapper to download tweets data from the Twitter Analytics platform. Particularly interesting for the impressions metrics that are unavailable on current Twitter API. Also works for the videos data.
Stars: ✭ 44 (+57.14%)
Mutual labels:  data-analysis
ecs154a-winter20
Course files for ECS 154A in Winter Quarter 2020.
Stars: ✭ 30 (+7.14%)
Mutual labels:  education
validada
Another library for defensive data analysis.
Stars: ✭ 29 (+3.57%)
Mutual labels:  data-analysis
afd zaojiao
安风德早教平台是一个致力于提高中小幼儿园、早教、托班管理和运营的互联网平台
Stars: ✭ 21 (-25%)
Mutual labels:  education
Spotify-Song-Recommendation-ML
UC Berkeley team's submission for RecSys Challenge 2018
Stars: ✭ 70 (+150%)
Mutual labels:  data-analysis
Metatrader
Expert advisors, scripts, indicators and code libraries for Metatrader.
Stars: ✭ 99 (+253.57%)
Mutual labels:  education
mlmachine
mlmachine accelerates machine learning experimentation
Stars: ✭ 23 (-17.86%)
Mutual labels:  data-analysis
fludget
Learn Flutter on Flutter! A widget directory with implementation samples!
Stars: ✭ 26 (-7.14%)
Mutual labels:  education
icebreaker
Web app that allows students to ask real-time, anonymous questions during class
Stars: ✭ 16 (-42.86%)
Mutual labels:  education
DeepLearning
This repository keeps track of my path towards understanding Deep Learning concepts (mainly with TensorFlow).
Stars: ✭ 69 (+146.43%)
Mutual labels:  education
teach-r-online
Materials for the Teaching statistics and data science online workshops in July 2020
Stars: ✭ 52 (+85.71%)
Mutual labels:  education
CircuitPython-online-IDE
CircuitPython online IDE
Stars: ✭ 15 (-46.43%)
Mutual labels:  education
kwx
BERT, LDA, and TFIDF based keyword extraction in Python
Stars: ✭ 33 (+17.86%)
Mutual labels:  data-analysis
machine-learning-and-simulation
All the handwritten notes 📝 and source code files 🖥️ used in my YouTube Videos on Machine Learning & Simulation (https://www.youtube.com/channel/UCh0P7KwJhuQ4vrzc3IRuw4Q)
Stars: ✭ 93 (+232.14%)
Mutual labels:  education
Google-Data-Analytics-Professional-Certificate
Quizzes & Assignment Solutions for Google Data Analytics Professional Certificate on Coursera. Also included a few resources on side that I found helpful.
Stars: ✭ 19 (-32.14%)
Mutual labels:  data-analysis
covid19-data-greece
Datasets and analysis of Novel Coronavirus (COVID-19) outbreak in Greece
Stars: ✭ 16 (-42.86%)
Mutual labels:  data-analysis
prezzy-vdom-example
👓 From my Youtube Video, "Let's Build a Virtual DOM from Scratch"
Stars: ✭ 58 (+107.14%)
Mutual labels:  education

A Python Tour of Data Science

Binder

This short primer is an introduction to the scientific Python stack for Data Science. It is designed as a tour around the major Python packages used for the main computational tasks encountered in the sexiest job of the 21st century. At the end of this tour, you'll have a broad overview of the available libraries as well as why and how they are used for each task. This notebook aims at answering the following question: which tool should I use for which task and how.

The primer is a Jupyter notebook.

  • The easiest way to play with it from your browser without installing anything is to click on the binder badge.
  • If you only want to look at it, open the HTML version rendered by nbviewer.
  • The most interactive way is to run the code by yourself, after installing Python and the required packages on your computer.
    # brew / apt-get / yum / pacman
    package-manager install python3
    
    # virtual environment
    pyvenv /path/to/new/virtual/env
    . /path/to/new/virtual/env/bin/activate
    
    # clone repository
    git clone https://github.com/mdeff/python_tour_of_data_science.git
    cd python_tour_of_data_science
    
    make install  # install the dependencies (requirements.txt)
    make          # run the notebook to be sure everything is fine
    make clean    # clear the generated outputs
    
    # display notebook
    jupyter notebook

All codes and examples are released under the terms of the MIT License.

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].