Introduction to the method of reading and writing CSV files in Pandas (with code)

不言
Release: 2019-03-29 11:01:34
forward
5963 people have browsed it

This article brings you an introduction to the method of reading and writing CSV files in Pandas (with code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Read csv: use pandas to read

import pandas as pd
import csv
if name == '__main__':
Copy after login
# header=0——表示csv文件的第一行默认为dataframe数据的行名称,
# index_col=0——表示使用第0列作为dataframe的行索引,
# squeeze=True——表示如果文件只包含一列,则返回一个序列。
file_dataframe = pd.read_csv('../datasets/data_new_2/csv_file_name.csv', header=0, index_col=0, squeeze=True)
# 结果:
Copy after login

Introduction to the method of reading and writing CSV files in Pandas (with code)

# When the parameter index_col=False, row index 0 to n is automatically generated

Introduction to the method of reading and writing CSV files in Pandas (with code)

# csv data:

Introduction to the method of reading and writing CSV files in Pandas (with code)

data_1 = []
# 读取行索引一样的数据,保存为list
try:
    # 行索引为i的数据有多行,列为'pre_star'
    data_1.extend(file_dataframe .loc[i]['pre_star'].values.astype(float))
except AttributeError:
    # 行索引为i的数据只有单行,
    data_1.extend([file_dataframe .loc[i]['pre_star']])
# 多行结果
Copy after login

Introduction to the method of reading and writing CSV files in Pandas (with code)

# There is only one row of data with row index i , you cannot use .values ​​for file_dataframe .loc[i]['pre_star'], otherwise an error will be reported:

Introduction to the method of reading and writing CSV files in Pandas (with code)

##Write csv

Use csv writing

stu1 = [lid, k, pre_count_data[k]]
# 打开文件,写模式为追加'a'
out = open('../results/write_file.csv', 'a', newline='')
# 设定写入模式
csv_write = csv.writer(out, dialect='excel')
# 写入具体内容
csv_write.writerow(stu1)
Copy after login
This article is all over here. For more other exciting content, you can pay attention to the

python video tutorial column of the PHP Chinese website!

The above is the detailed content of Introduction to the method of reading and writing CSV files in Pandas (with code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!