1. 사전 설치 pip install pyreadstat SPSS, SAS, STATA 등의 다양한 통계 분석을 위해 설치 추가로 vs code에서 jupyter notebook을 사용 중이다. 2. "한국복지패널 데이터" 분석 준비 배경 데이터 import pandas as pd import numpy as np import seaborn as sns #데이터 가져오기 raw = pd.read_spss('Koweps_hpwc14_2019_beta2.sav') #복사본 생성 welfare = raw.copy() welfare = welfare.rename( columns= {'h14_g3':'sex', #성별 'h14_g4': 'birth', #출생년도 'h14_g10' : 'marriage_type',..