분류 전체보기

작성일자 : 2024-05-09Ver 0.1.1  시간 구간별 선수 활동량 지표 집계 및 시각화¶In [1]: import os# directory 변경new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics'os.chdir(new_dir)import numpy as npimport pandas as pdfrom tqdm import tqdmimport matplotlib.pyplot as pltfrom src.plot_utils import draw_pitch (1) 가공 데이터 불러오기¶In [3]: match_id = 1# file = f'data_metrica/Sample_Game_{match_id}..
작성일자 : 2024-05-08Ver 0.1.1 데이터 준비¶In [1]: import os# directory 변경new_dir = '/Users/limjongjun/Desktop/JayJay/Growth/Python/soccer-analytics'os.chdir(new_dir)import numpy as npimport pandas as pdfrom tqdm import tqdmimport matplotlib.pyplot as pltfrom src.plot_utils import draw_pitch (1) 가공 데이터 불러오기¶In [3]: match_id = 1file = f'data_metrica/data/Sample_Game_{match_id}/Sample_Game_{mat..
작성일자 : 2024-05-07Ver 0.1.1강의에서 소개된 파이썬 주요 기능¶ffmpeg: https://anaconda.org/conda-forge/ffmpeg터미널에서 conda install -c conda-forge ffmpeg 명령어 실행scipy.signal.savgol_filter: https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.savgol_filter.htmlmatplotlib.pyplot.quiver: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.quiver.htmlmatplotlib.animation.FFMpegWriter: https://matplo..
· SQL/Oracle
작성일자 : 2024-04-27Ver 0.1.11. SQL*PLUS, 그리고 SQL과의 차이오라클의 SQL*PLUS는 오라클 데이터베이스와 상호 작용하기 위한 명령줄 기반의 인터페이스이다. SQLPLUS를 사용하면 데이터베이스에 연결하고 SQL 쿼리를 실행하거나 데이터베이스 객체를 관리할 수 있다. 아래는 SQL*PLUS와 SQL의 주요 차이점을 표로 정리한 것이다.특성SQL*PLUSSQL인터페이스 종류명령줄 기반주로 GUI 또는 명령줄 기반기능데이터베이스 관리, 쿼리 실행 등쿼리 실행 및 데이터베이스 객체 관리실행 방식스크립트 실행 또는 대화식대화식 또는 프로그래밍 방식결과 표시 형식텍스트 형식 테이블, 그래프, 다이어그램 등기본 사용자 인터페이스명령프롬프트/터미널SQL 개발 도구 (예: Oracle ..
Unlimited Jun
'분류 전체보기' 카테고리의 글 목록 (14 Page)