Path: blob/master/Key Python Libraries - Day 1.ipynb
3064 views
Python library is a collection of functions and methods that allows you to perform lots of actions without writing your own code.Here, a ‘library’ loosely describes a collection of core modules.
Data Science and Machine Learning
Numpy and Scipy – Fundamental Scientific Computing
Pandas – Data Manipulation and Analysis
StatsModels – Statistical Modeling, Testing, and Analysis
Matplotlib – Plotting and Visualization
Seaborn – For Statistical Data Visualization
Scikit-learn – Machine Learning and Data Mining
Keras- Machine learning
PyTorch- Machine Learning Tensor Flow
LightGBM- Machine Learning(Model Optimization)
Tensor Flow - Machine Learning
Eli5- Machine learning models(Debugging)
Theano- AI and ML
NLTK - Natural Language Processing with Python
SQLAlchemy- Database access
Web Development Frameworks and GUI
Tkinter – GUI applications
Requests – HTTP requests
Django- Web framework
Scrapy- Web crawling frameworks
BeautifulSoup - web crawling and data scraping
Flask - Micro-web framework
Others
Pyspark - Support Python with Spark, Apache Spark community released a tool, PySpark
TabPy - TabPy (the Tableau Python Server) is an Analytics Extension implementation which expands Tableau’s capabilities by allowing users to execute Python scripts and saved functions via Tableau’s table calculations
Jython- Jython an implementation of the Python programming language designed to run on the Java platform
scipy.special package contains numerous functions of mathematical physics.
SciPy special function includes Cubic Root, Exponential, Log sum Exponential, Lambert, Permutation and Combinations, Gamma, Bessel, hypergeometric, Kelvin, beta, parabolic cylinder, Relative Error Exponential, etc..
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-13-25e1b4eaf364> in <module>
----> 1 import pandas_profiling as pro
2 profile = pro.ProfileReport(chicago_data)
3 profile
ModuleNotFoundError: No module named 'pandas_profiling'