python使用matplotlib将excel中两列数据用xy坐标轴画图表示

import numpy as np
import csv
import os
import matplotlib.pyplot as plt
import pandas as pd

fig = plt.figure()
ax = fig.add_subplot(111)


def get_csv_files(file_dir):
    if not os.path.isdir(file_dir):   #批量读取excel文件
        print("usage: python3 csv.py csv_dirname out_putfile")
        return []
    list_csv = []
    x = []
    color1 = plt.cm.tab10(3.5) #点的颜色
    dir_list = os.listdir(file_dir)
    for file in dir_list:
        path = os.path.join(file_dir, file)
        if os.path.splitext(path)[1] == '.csv':
            list_csv.append(path)
    for i in range(355):      #excel中的有355个点坐标
        x.append(i)
    #print(x)
    for index in list_csv:
        csv_data = pd.read_csv(index)

        #print(x)
        plt.scatter(x,csv_data,s=8,
                    c=np.array(color1).reshape(1, -1))
        # plt.show() #单个打印画图
    plt.show() #所有文件打印
    #return img_box


if __name__ == '__main__':
    List = get_csv_files(r'C:\Users\m1317\Desktop\END') #excel文件的位置

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值