[R] plot : 그래프 타입 종류 사용 데이터 1) women 데이터셋 - R에서 제공하는 기본 데이터셋 - 30~39세의 미국 여성의 평균 키와 몸무게에 대한 데이터 1 2 ?women str(women) cs 2) plot으로 간단한 차트 그리기 - x축 : weight - y축 : height 1 plot(women$weight, women$height) cs 그래프 타입 종류 1) tpye = "p" - 기본(default) 1 plot(women$weight, women$height, type = "p") cs 2) type = "l" - 선 그래프 1 plot(women$weight, women$height, type = "l") cs 3) type = "b" - 선 그래프에 점 찍기 1 ..