【R】 산포도에 상관 계수를 매입하여 그리는 방법
분석에 사용되는 데이터
tree_height.csv
direction,altitude,tree_height
east,260,12.1
east,320,12.3
east,390,8.2
east,430,9.8
east,470,7.9
east,500,6
west,280,15.3
west,330,11.9
west,380,11.2
west,410,9.3
west,440,7.9
west,500,6.8
산점도 그리기
R 콘솔
> # CSVファイルを読み込む
> tree_height <- read.table("C:\\tree_height.csv", header=TRUE, encoding="CP932", sep=",")
> # 相関係数を求めて、変数corrに代入する。この時、round関数で小数第3位以下を丸めている。
> corr <- round( cor(tree_height$altitude, tree_height$tree_height, method="pearson"), 2)
> corr
[1] -0.92
> # 散布図を描画する。
> plot(tree_height$altitude, tree_height$tree_height, main="標高と樹高との関係", xlab="標高(m)", ylab="樹高(m)")
> # 相関係数の値を「r={相関係数}」という文字列に直す。
> corr_text <- paste("r=", corr, sep="")
> corr_text
[1] "r=-0.92"
> # 相関係数の文字列をグラフの右上から少し隙間を空けて表示する。
> mtext(corr_text, line=-1.2, side=3, adj=0.98)
요약
Reference
이 문제에 관하여(【R】 산포도에 상관 계수를 매입하여 그리는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nkojima/items/cb4cb4d3db15c60cbdfc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)