파이썬 Python - "데이터 분석과 머신 러닝을 위한 파이썬 라이브러리(numpy, pandas, scikit-learn 등)"에 대한 예제
1. NumPy 예제 import numpy as np # 1차원 배열 생성 a = np.array([1, 2, 3]) print(a) # 2차원 배열 생성 b = np.array([[1, 2, 3], [4, 5, 6]]) print(b) # 배열의 형태 확인 print(a.shape) print(b.shape) # 배열의 데이터 타입 확인 print(a.dtype) print(b.dtype) # 배열 연산 c = np.array([1, 2, 3]) d = np.array([4, 5, 6]) print(c + d) print(c - d) print(c * d) print(c / d) 2. Pandas 예제 import pandas as pd # Series 생성 s = pd.Series([1, 3, 5,..