3. 데이터 이해를 위한 탐색과 시각화3.1 지리적 데이터 시각화# 지리 정보를 반영한 산점도 그리기housing.plot(kind="scatter", x="longitude", y="latitude", grid=True, alpha=0.2)save_fig("better_visualization_plot")plt.show() 지리 정보(위도와 경도)로 만든 산점도# 지리 정보에 주택 가격 정보까지 반영housing.plot(kind="scatter", x="longitude", y="latitude", grid=True, # 기본적인 그래프 s=housing["population"] / 100, label="population", # 점의 크기를 인구 비율로 할당함 ..