Hi, i am in my personal project, that is Data Analysis & Visualization with Python.
These below information was my notes for project’s preparation.
Source: “Python for Data Analysis”, by Wes McKinney, O’Reilly Publisher
Python libraries which were needed.
> Pandas
This library could be installed with MacOS Terminal by command “pip install pandas”.
Library which combines about
a) high performance array computing feature from NumPy Library
b) dan, flexible data manipulation capabilities from Spreadsheet dan relational database
> NumPy (Numerical Python)
This library could be installed with MacOS Terminal by command “pip install numpy”.
Library as the source of figure Scientific Computing in Python, the package contents consist of: – a “multidimensional object array” which was called “ndarray”
– source of mathematic functions and many operans for array management
– tools for read-write array based data sets
> (matplotlib)
This library could be installed with MacOS Terminal by command “pip install matplotlib”
Library which usefull for producing plots and 2D data visualizations.
> IPython
This library could be installed with MacOS Terminal by command “pip install ipython”
Standard library for filter scientific in Python, the usage of IPython could be combined with matplotlib.
Thank you