스프레드시트 사용자를 위한 Python
Chris Cardillo
Data Scientist
pd.read_excel()로 가져오기.head(), .describe(), .info()로 파악하기df[df[column] == 'value']로 필터링하기df[new_column] = df[old_column] + 1로 생성하기df.group_by().sum()으로 피벗팅pd.ExcelFile()과 .parse()로 여러 시트 처리.merge()와 left 조인sns.barplot() 및 plt.show()plt.title(), plt.xlabel(), plt.ylabel()sns.set_style() 및 sns.despine()hue스프레드시트 사용자를 위한 Python