pandas¶
pandas is a Python library for data analysis that has become very popular in recent years. On the website, pandas is described thus:
„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.“
More specifically, pandas is an in-memory analysis tool that offers SQL-like constructs, as well as statistical and analytical tools. In doing so, pandas builds on Cython and NumPy, making it less memory intensive and faster than pure Python code. Mostly pandas is used to
implement an ETL process
prepare machine learning
See also