Python Learning Notes

Source: Internet
Author: User

1/read into CSV file: The Loadtxt function in NumPy can easily read the CSV file, automatically slice the fields, and load the data into the NumPy array

C,v=numpy.loadtxt (' data.csv ', delimiter= ', ', usecols= (6,7), unpack=true)

As you can see, the data is stored in the Data.txt file, and the delimiter is set to "," because a CSV file is to be processed. The Usecols parameter is a tuple that gets the data from the 7th field to the 8th field. The unpack parameter is set to True, which means that the data that stores different columns is separated, that is, the array of columns seventh/eighth is assigned to the variables C and v.

Python Learning Notes

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.