분류 전체보기

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..
In [2]: import os import numpy as np import pandas as pd In [3]: os.getcwd() #현재 디렉토리 확인 Out[3]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/Class101_Pandas' In [5]: df1 = pd.read_csv('01_Contract_Data.csv') In [17]: # 행단위 추출 df1.head() # 상위 N개(default = 5) 데이터 추출 Out[17]: Index Member_ID Sales_Type Contract_Type Channel Datetime Term Payment_Type Product_Type Amount_Month Customer_T..
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_..
· Tool
작성일자 : 2023-10-03 수정일자 : 2023-10-21 ver 0.1.2 vs code에서 jupyter notebook으로 공부를 하고 티스토리 블로그에 게시하기 위해서는 마크다운 또는 html로 변환이 필요하다. 이중에서 vs code에서 .ipynb(jupyter notebook)을 .html 파일로 변경하는 방법은 아래와 같다. 변경 방법 (Terminal 에서 아래 명령어 실행) jupyter nbconvert --to html /path.ipynb Error 명령어 실행시 ModuleNotFoundError : No module named 'markupsafe' 에러 발생(23-10-21) 현상 - 라이브러리 삭제를 별달리 한적이 없었던거 같은데 markupsafe라는 모듈이 없다는 ..
Unlimited Jun
'분류 전체보기' 카테고리의 글 목록 (50 Page)