python excel 데이터 읽기 간단한 곡선도 그리기 전체 단계 기록

1837 단어 pythonexcel곡선도
python excel 파일을 읽고 쓰는 데는 여러 가지 방법이 있습니다.
  • xlrd와 xlwt로 excel 읽기와 쓰기
  • openpyxl로 excel 읽기와 쓰기
  • 판다스로 excel 읽기와 쓰기.
  • 본고는 xlrd를 사용하여 excel 파일 (xls, sxls 형식) 을 읽고 xlwt를 사용하여 excel에 데이터를 기록합니다
    1. xlrd와 xlwt의 설치
    설치가 간단합니다. 윈도우즈+r 실행 창을 내보내고 cmd를 입력하고 명령줄 창에 들어가서 다음 명령을 입력하십시오.
  • xlrd 설치: pip install xlrd
  • xlwt 설치: pip install xlwt
  • xlrd API(application programming interface) 주소:https://xlrd.readthedocs.io/en/latest/api.html
    여기서 xlrd 내의 각종 대상과 방법을 볼 수 있습니다
    데이터 읽기
    xlrd로 excle 데이터 읽기:
  • xlrd를 사용합니다.open_wokrbook (), 파일을 열고 책 대상을 얻습니다
  • book.sheet () [0] sheet 대상을 얻습니다
  • sheet 대상을 바탕으로 각종 정보를 얻고, (아래에cell 대상도 있음)
  • 
    import numpy as np
    from matplotlib import pyplot as plt
    import chinese
    import xlrd
    import xlwt
    # chinese.py ,
    chinese.set_ch()
    """ excel ,API https://xlrd.readthedocs.io/en/latest/api.html"""
    filename='wind.xls'							
    book_wind=xlrd.open_workbook(filename=filename)
    wind_sheet1=book_wind.sheets()[0]					# [0] 
    # 1 
    title=wind_sheet1.row_values(0)
    
    # 、 、  col_values(colx,start_row=0,end_row=none)
    x=wind_sheet1.col_values(0,1)
    y1=wind_sheet1.col_values(1,1)
    y2=wind_sheet1.col_values(2,1)
    
    # 
    line1,=plt.plot(x,y1,label=' ')		
    line1.set_dashes([2,2,10,2])			# ,set_dashes([line_space,space_space,line_space,space_space])
    line2,=plt.plot(x,y2,label=' ')
    line2.set_dashes([2,2,2,2])
    plt.title(' ',fontsize=16)
    plt.legend(loc=4)						# ,4 
    plt.show()
    
    총결산
    이는python이 excel 데이터를 읽고 간단한 곡선도를 그리는 것에 관한 글을 소개합니다. 더 많은 관련python이 excel 데이터를 읽고 간단한 곡선도를 그리는 내용은 저희 이전의 글을 검색하거나 아래의 관련 글을 계속 훑어보십시오. 앞으로 많은 응원 부탁드립니다!

    좋은 웹페이지 즐겨찾기