Posts

Showing posts from November, 2019

pandas module in python

Pandas is an opensource library that allows to you perform data manipulation in Python. Pandas library is built on top of Numpy, meaning Pandas needs Numpy to operate. Pandas provide an easy way to create, manipulate and wrangle the data. Pandas is also an elegant solution for time series data.                           Why use Pandas? Data scientists use Pandas for its following advantages: Easily handles missing data It uses   Series for one-dimensional data structure  and  DataFrame for multi-dimensional data structure It provides an efficient way to slice the data It provides a flexible way to merge, concatenate or reshape the data It includes a powerful time series tool to work with                           What is a data frame? A data frame is a two-dimensional array, with labeled ...