Python/pandas

In [1]: import os import numpy as np import pandas as pd In [2]: os.getcwd() #현재 디렉토리 확인 Out[2]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/Class101_Pandas' In [122]: pip install openpyxl Collecting openpyxl Downloading openpyxl-3.1.2-py2.py3-none-any.whl (249 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 250.0/250.0 kB 9.5 MB/s eta 0:00:00 Collecting et-xmlfile Downloading et_xmlfile..
In [1]: import os import numpy as np import pandas as pd In [2]: os.getcwd() #현재 디렉토리 확인 Out[2]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/Class101_Pandas' In [25]: df3 = pd.read_csv('03_Delivery.csv', encoding= 'cp949') #한글 인코더 명칭 옵션 추가 df3 Out[25]: 결제수단 배송번호 배송시작일 배송완료일 상품구매금액 상품번호 수량 주문경로 주문일 0 무통장입금 D-20181227-0000648-00 2019-01-07 오전 8:56 2019-01-11 오전 5:32 71450 1077.0 1 PC쇼핑..
In [1]: import os import numpy as np import pandas as pd In [2]: os.getcwd() #현재 디렉토리 확인 Out[2]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/Class101_Pandas' In [25]: df3 = pd.read_csv('03_Delivery.csv', encoding= 'cp949') #한글 인코더 명칭 옵션 추가 df3 Out[25]: 결제수단 배송번호 배송시작일 배송완료일 상품구매금액 상품번호 수량 주문경로 주문일 0 무통장입금 D-20181227-0000648-00 2019-01-07 오전 8:56 2019-01-11 오전 5:32 71450 1077.0 1 PC쇼핑..
In [1]: import os import numpy as np import pandas as pd In [2]: os.getcwd() #현재 디렉토리 확인 Out[2]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/Class101_Pandas' In [3]: df1 = pd.read_csv('01_Contract_Data.csv') df1 Out[3]: Index Member_ID Sales_Type Contract_Type Channel Datetime Term Payment_Type Product_Type Amount_Month Customer_Type Age Address1 Address2 State Overdue_count Overdue_Type Gen..
Unlimited Jun
'Python/pandas' 카테고리의 글 목록 (2 Page)