ggplot2を使って、散布図を作る-1

R グラフィックス クックブック 10回目 ggplot2パッケージを利用して、散布図を作成していきます。散布図 - Wikipediaこんなデータです。 > head(heightweight[, c("ageYear","heightIn")]) ageYear heightIn 1 11.92 56.3 2 12.92 62.3 3 12.75 63.3 4 13.42 59.0 5 15.92 62.5 6 14.25 62.5 > str(heightweight[, c("a…