##csv 파일 여는 방법
import matplotlib.pyplot as plt
import numpy as np


'''
##csv 파일 여는 방법 1 (csv 이용)
import csv

x = []
y = []

with open('example','r') as csvfile: #csv파일 불러오기
plots = csv.reader(csvfile, delimiter=',') #delimiter는 구분문자... csv파일은 줄과 구분문자로 구성되어있는데,,,구분문자에 대한 설정인듯 싶다..
for row in plots: #plots는 각line이다.기본적인 line들
x.append(int(row[0])) #append는 더하는거, int는 정수 정수로 만드는것,
y.append(int(row[1])) #대부분 글로 load되는데, 그걸 integer,float로 바꾸어야한다고 한다

plt.plot(x,y, label='Loaded from file!')
'''

##csv 파일 여는 방법 2 (numpy이용),,,,이걸 이용하자,,, 일단 짧다.....
x, y = np.loadtxt('example', delimiter=',', unpack=True)
plt.plot(x,y, label='Loaded from file!')



plt.xlabel('x') #x축
plt.ylabel('y') #y축
plt.title('Interesting Graph\n check it out') #title
plt.legend() #옆에 label 붙이는 것
plt.show() #실행

















+ Recent posts