Python Pandas - JackieWSC/Onepiece GitHub Wiki

Pandas

  • It requires to install follow libraries
    • sudo pip install pandas
      • suggestion to use this command to install
      sudo apt-get install python-pandas
      
    • pip install numpv
    • pip install matplotlib

Q & A

  1. If i try to install Matplotlib I am getting this error if i use "pip install matplotlib"
    • As pip's caching mechanism is trying to read the entire file into memory before caching it… which poses a problem in a limited-memory environment, as matplotlib is ~50mb. A simpler solution, until pip is patched to use a constant-space caching algorithm, is to run pip with --no-cache-dir to avoid the cache:
    $ pip --no-cache-dir install matplotlib
    

Lesson 2 - Pandas basic, data frame, index, column

Lesson 3 - Pandas IO, read from csv file, write to csv, html file

Lesson 4 - Pandas with quandl api, get html table on website

Lesson 5 - Pandas data frame concatenation and appending

Lesson 6 - Pandas data frame joining and merging