numpy vs pandas

Solutions on MaxInterview for numpy vs pandas by the best coders in the world

showing results for - "numpy vs pandas"
Miguel Ángel
15 Sep 2016
1The Pandas module is used for working with tabular data. 
2It allows us to work with data in table form, such as in CSV
3or SQL database formats. We can also create tables of our own,
4and edit or add columns or rows to tables(DATAFRAMES AND 
5SERIES)
6The Numpy module is mainly used for working with numerical 
7data. It provides us with a powerful object known as an Array.
8With Arrays, we can perform mathematical operations on 
9multiple values in the Arrays at the same time, and also
10perform operations between different Arrays, similar to 
11matrix operations. 
12Matplotlib module is used for data visualization. 
13It provides functionality for us to draw charts and graphs, 
14so that we can better understand and present the data
15visually.