참고글 : [Python] 피벗 (.pivot, .pivot_table) [Python 시각화] 선 그래프 그리기 (matplotlib API) import pandas as pd import numpy as np from pandas import Series, DataFrame from numpy import nan as NA import matplotlib.pyplot as plt %matplotlib qt #. 막대 그래프(Bar Plot) 그리기 - 각 로우별 막대 그래프 출력 - 각 컬럼이름이 범례로 지정 df1 = pd.read_csv('plot_test.csv') df1.index = ['월','화','수','목','금','토','일'] df1.columns.names = ['지점'] df1..
참고글 : [Python] 피벗 (.pivot, .pivot_table) [Python 시각화] 막대 그래프 그리기 (matplotlib API) import pandas as pd import numpy as np from pandas import Series, DataFrame from numpy import nan as NA matplotlib API cmd 모드로 사용 시, - pylab 모드로 실행 : ipython --pylab - pylab 모드로 전환 : %matplotlib qt import matplotlib.pyplot as plt #. 선 그래프(Line Plot) 그리기 - figure : 그래프를 그릴 수 있는 도화지 (subplot만으로도 그래프 생성이 가능하지만, 특정 그래프..