Environmental ready Pandas data analysis

A, Python Programming Fundamentals

Can recommend to learn directly from the official documents, high quality, now also supports Chinese, and friendly than many previous
Python Tutorial Chinese official entry
Python use a few more areas of Web development, scientific computing, IT operation and maintenance, we use Python to data analysis is part of this category of scientific computing, the core of the package for Pandas

Second, the software environment

In this paper, for example win10 environment

1, Python environment installation package installed + pandas + IDE like mounting (not described in detail)

Python official website to download the corresponding version of the Python Package https://www.python.org/downloads/, installation pandas by pip install instructions (dependent numpy package, etc.) and other third-party packages, such as the installation may fail to websites on the download compilation good use pip install package file to install locally, or Spyder IDE installation Pycharm

2, Anaconda installation integrated environment (recommended)

Anaconda Python integrates environmental, scientific data commonly used third-party packages, Conda package management, Spyder IDE, Jupyter Notebook (Web can be seen as the end of the IDE, you can save the data analysis process to share notes form) for data analysis and so open box that is very easy to use

To Anaconda's official website on your environment, download the appropriate installation package, you can see right to my computer operating system version is 64-bit or 32-bit, and then click to download the corresponding version

The recommended option is to install Anaconda (if you understand the meaning of the options can also choose custom installation), the installation is finished we can find the "Anaconda family bucket" at the beginning of the panel

Anaconda Prompt cmd similar to our environment by mounting a first aspect, we use it to perform pip, conda other instruction
Jupyter Notebook, Spyder we used to write, the execution code, the other two can ignore

Guess you like

Origin www.cnblogs.com/linxingyi/p/10901178.html