All Projects → rasbt → Python_reference

rasbt / Python_reference

Useful functions, tutorials, and other Python-related things

Programming Languages

Jupyter Notebook
11667 projects
HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python reference

Numerical Computing Is Fun
Learning numerical computing with notebooks for all ages.
Stars: ✭ 730 (-76.64%)
Mutual labels:  jupyter-notebook, learning-python
Learn Python3
Jupyter notebooks for teaching/learning Python 3
Stars: ✭ 4,418 (+41.38%)
Mutual labels:  jupyter-notebook, learning-python
Learnpython
以撸代码的形式学习Python
Stars: ✭ 6,040 (+93.28%)
Mutual labels:  jupyter-notebook, learning-python
Notebooks
Learn Python for free using open-source notebooks in Hebrew.
Stars: ✭ 877 (-71.94%)
Mutual labels:  jupyter-notebook, learning-python
Python Note
《Python 学习手册》(第四版 + 第五版)笔记
Stars: ✭ 74 (-97.63%)
Mutual labels:  jupyter-notebook, learning-python
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+322.4%)
Mutual labels:  jupyter-notebook, learning-python
100 Plus Python Programming Exercises Extended
100+ python programming exercise problem discussed ,explained and solved in different ways
Stars: ✭ 1,250 (-60%)
Mutual labels:  jupyter-notebook, learning-python
Python Awesome
Learn Python, Easy to learn, Awesome
Stars: ✭ 219 (-92.99%)
Mutual labels:  jupyter-notebook, learning-python
Cutblur
Rethinking Data Augmentation for Image Super-resolution (CVPR 2020)
Stars: ✭ 269 (-91.39%)
Mutual labels:  jupyter-notebook
Fba matting
Official repository for the paper F, B, Alpha Matting
Stars: ✭ 272 (-91.3%)
Mutual labels:  jupyter-notebook
Deep Learning
No description, website, or topics provided.
Stars: ✭ 3,058 (-2.14%)
Mutual labels:  jupyter-notebook
Deeplearningwithtf2.0
Practical Exercises in TensorFlow 2.0 for Ian Goodfellows Deep Learning Book
Stars: ✭ 270 (-91.36%)
Mutual labels:  jupyter-notebook
Cryptocurrency Price Prediction
Cryptocurrency Price Prediction Using LSTM neural network
Stars: ✭ 271 (-91.33%)
Mutual labels:  jupyter-notebook
Gophernotes
The Go kernel for Jupyter notebooks and nteract.
Stars: ✭ 3,100 (-0.8%)
Mutual labels:  jupyter-notebook
Drq
DrQ: Data regularized Q
Stars: ✭ 268 (-91.42%)
Mutual labels:  jupyter-notebook
Pytorch Kaggle Starter
Pytorch starter kit for Kaggle competitions
Stars: ✭ 268 (-91.42%)
Mutual labels:  jupyter-notebook
Graph nn
Graph Classification with Graph Convolutional Networks in PyTorch (NeurIPS 2018 Workshop)
Stars: ✭ 268 (-91.42%)
Mutual labels:  jupyter-notebook
Computation Thru Dynamics
Understanding computation in artificial and biological recurrent networks through the lens of dynamical systems.
Stars: ✭ 273 (-91.26%)
Mutual labels:  jupyter-notebook
Data Science Is Software
Stars: ✭ 272 (-91.3%)
Mutual labels:  jupyter-notebook
Unintended Ml Bias Analysis
Stars: ✭ 271 (-91.33%)
Mutual labels:  jupyter-notebook

A collection of useful scripts, tutorials, and other Python-related things


Python tips and tutorials [back to top]

  • A collection of not so obvious Python stuff you should know! [IPython nb]

  • Python's scope resolution for variable names and the LEGB rule [IPython nb]

  • Key differences between Python 2.x and Python 3.x [IPython nb]

  • A thorough guide to SQLite database operations in Python [Markdown]

  • Unit testing in Python - Why we want to make it a habit [Markdown]

  • Installing Scientific Packages for Python3 on MacOS 10.9 Mavericks [Markdown]

  • Sorting CSV files using the Python csv module [IPython nb]

  • Using Cython with and without IPython magic [IPython nb]

  • Parallel processing via the multiprocessing module [IPython nb]

  • Entry point: Data - using sci-packages to prepare data for Machine Learning tasks and other data analyses [IPython nb]

  • Awesome things that you can do in IPython Notebooks (in progress) [IPython nb]

  • A collection of useful regular expressions [IPython nb]

  • Quick guide for dealing with missing numbers in NumPy [IPython nb]

  • A random collection of useful Python snippets [IPython nb]

  • Things in pandas I wish I'd had known earlier [IPython nb]


Python and the web [back to top]

  • Creating internal links in IPython Notebooks and Markdown docs [IPython nb]

  • Converting Markdown to HTML and adding Python syntax highlighting [Markdown]


Algorithms and Data Structures [back to top]

This category has been moved to a separate GitHub repository rasbt/algorithms_in_ipython_notebooks


Plotting and Visualization [back to top]

The matplotlib-gallery in IPython notebooks has been moved to a separate GitHub repository matplotlib-gallery

Featured articles:


Benchmarks [back to top]
  • Simple tricks to speed up the sum calculation in pandas [IPython nb]

*More benchmarks can be found in the separate GitHub repository [One-Python-benchmark-per-day](https://github.com/rasbt/One-Python-benchmark-per-day)*

Featured articles:

  • (C)Python compilers - Cython vs. Numba vs. Parakeet [IPython nb]

  • Just-in-time compilers for NumPy array expressions [IPython nb]

  • Cython - Bridging the gap between Python and Fortran [IPython nb]

  • Parallel processing via the multiprocessing module [IPython nb]

  • Vectorizing a classic for-loop in NumPy [IPython nb]


Python and "Data Science" [back to top]

The "data science"-related posts have been moved to a separate GitHub repository pattern_classification

Featured articles:

  • Entry Point: Data - Using Python's sci-packages to prepare data for Machine Learning tasks and other data analyses [IPython nb]

  • About Feature Scaling: Standardization and Min-Max-Scaling (Normalization) [IPython nb]

  • Principal Component Analysis (PCA) [IPython nb]

  • Linear Discriminant Analysis (LDA) [IPython nb]

  • Kernel density estimation via the Parzen-window technique [IPython nb]


Useful scripts and snippets [back to top]


Other [back to top]


Links [back to top]


// News

  • Python subreddit - My favorite resource to catch up with Python news and great Python-related articles.

  • Python community on Google+ - A nice and friendly community to share and discuss everything about Python.

  • Python Weekly - A free weekly newsletter featuring curated news, articles, new releases, jobs etc. related to Python.


// Resources for learning Python


// My favorite Python projects and packages

  • The IPython Notebook - An interactive computational environment for combining code execution, documentation (with Markdown and LateX support), inline plots, and rich media all in one document.

  • matplotlib - Python's favorite plotting library.

  • NumPy - A library for multi-dimensional arrays and matrices, along with a large library of high-level mathematical functions to operate on these arrays.

  • SciPy - A library that provides various useful functions for numerical computing, such as modules for optimization, linear algebra, integration, interpolation, ...

  • pandas - High-performance, easy-to-use data structures and data analysis tools build on top of NumPy.

  • Cython - C-extensions for Python, an optimizing static compiler to combine Python and C code.

  • Numba - A just-in-time specializing compiler which compiles annotated Python and NumPy code to LLVM (through decorators)

  • scikit-learn - A powerful machine learning library for Python and tools for efficient data mining and analysis.

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