Side Project

작성일자 : 2023-11-11 Ver 0.1.1 In [1]: import os import pandas as pd import numpy as np import matplotlib.pyplot as plt In [2]: # 현대 디렉토리 확인 current_dir = os.getcwd() current_dir Out[2]: '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics/Excercise' In [3]: # Data가 있는 디렉토리로 변경 new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics' os.chdir(new_dir) print(cu..
작성일자 : 2023-09-30 Ver 0.1.1 경기 데이터 불러오기 import numpy as np import pandas as pd from tqdm import tqdm import os pd.set_option('display.max_columns', 40) #최대로 보여지는 칼럼수 지정 current_dir = os.getcwd() current_dir '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics/Excercise' new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics' os.chdir(new_dir) print(current_dir) /U..
작성일자 : 2023-08-27 Ver 0.1.1 import pandas as pd import tqdm as tqdm import os current_dir = os.getcwd() current_dir '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics' new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics' os.chdir(new_dir) print(current_dir) /Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics/Excercise match_id = 2499895 match_even..
작성일자 : 2023-08-27 Ver. 0.1.1 import os import pandas as pd import matplotlib.pyplot as plt import plotly.graph_objects as go Change directory current_dir = os.getcwd() print(current_dir) /Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics' os.chdir(new_dir) print(current_dir) /Users/limjongjun/Desktop/JayJay/G..
Unlimited Jun
'Side Project' 카테고리의 글 목록 (4 Page)