Python library & how to install
Posted: Tue Feb 20, 2024 11:34 am
1. Pandas
Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
Installation
Verification
import
2. Matplotlib
Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy things easy and hard things possible.
installation
import
3. Scikit-learn
Simple and efficient tools for predictive data analysis
4. Numpy
For viewing and editing two or three dimensional arrays in the Variable Explorer
conda
pip
5. Sympy
SymPy is a Python library for symbolic mathematics
Conda
PIP
Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
Installation
Code: Select all
pip install pandasVerification
Code: Select all
pip show pandasCode: Select all
import pandasMatplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy things easy and hard things possible.
installation
Code: Select all
pip install matplotlibCode: Select all
import matplotlibSimple and efficient tools for predictive data analysis
Code: Select all
pip install -U scikit-learnFor viewing and editing two or three dimensional arrays in the Variable Explorer
conda
Code: Select all
# Best practice, use an environment rather than install in the base env
conda create -n my-env
conda activate my-env
# If you want to install from conda-forge
conda config --env --add channels conda-forge
# The actual install command
conda install numpyCode: Select all
pip install numpySymPy is a Python library for symbolic mathematics
Conda
Code: Select all
conda update sympyCode: Select all
pip install sympy