Pandas read the CSV file hint does not exist for what reason?

Source: Internet
Author: User

The general case is that the data file is not in the current path, so it cannot read the data. Also, if the path name contains Chinese it is unreadable.

(1) You can choose:

Import OS

OS.GETCWD ()

Get the current working path, put your data file on this path, you can directly use Pd.read_csv ("./_.csv")

(2) You can choose:

Using Os.chdir (path), path is your data file

(3) You can choose:

Without changing the path, directly call the Df=pd.read_csv (U "file storage disk (e.g. C-drive):/folder/file name. CSV "), such as the stock data of the Python folder in the C drive: da = pd.read_csv (U" C:/python2.7/stock data/sh600.csv ")

If it is available under Ubuntu system: Data = Pd.read_csv (U "/home/lilai/tinic/train")

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.