Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 707 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 707 Bytes

Basic-Python-Libraries

NumPy and Pandas Practice

Numpy

NumPy is an open-source numerical Python library. NumPy contains a multi-dimensional array and matrix data structures. It can be utilised to perform a number of mathematical operations on arrays such as trigonometric, statistical, and algebraic routines. NumPy stands for Numerical Python.
Install numpy

pip install numpy

Pandas

Pandas is a Python package that provides fast, flexible, and expressive data structures designed to make working with structured (tabular, multidimensional, potentially heterogeneous) and time series data both easy and intuitive.
Install pandas

pip install pandas