Python Libraries are basically the collections of various entities and functions which are made to perform specific task easily and efficiently. These functions and functionalites are bundled together to form a Python Library or Framework. They are built in modules which help us to perform advanced operations. They have ready to use pre-defined functions or methods that are used to carry out the desired operation.
In order to use the particular function of the library, we need to import the library and then we can use it easily.
In our syllabus, we have to study two libraries of Python: Pandas and Matplotlib
Pandas stands for Panel Data.Pandas has the concept of various Data Structures which are used to store the data in various dimensions. Pandas has Series for storing data in 1-D, DataFrame for storing data in 2-D in the form of Table (Collection of Row and Columns) and Panel for storing data in 3-D in the form of multi-dimensional matrix. Pandas is
Steps to install a PYTHON LIBRARY.
> Open Command Prompt or Windows PowerShell
> Type "pip install {library-name}"
> Press Enter
C:\users\system32 > pip install pandas #it will install pandas
package downloaded successfully....
C:\users\system32 > pip install matplotlib
package downloaded successfully....
Data Structures are defined as the collection of data/values in a particular fixed structure or pattern in order to arrange it properly for effective storage, fast retreival and manipulation of data.We are going to study two data structures of Python Pandas: Series and DataFrame