時間序列分析(3)R語言 最基礎的回歸模型

2021-07-27 03:09:17 字數 1870 閱讀 4762

rt<-read.table("exam0203.txt", head=true); rt

lm.sol<-lm(weight~height, data=rt)

summary(lm.sol)

rt<-read.table("exam0203.txt", head=true); rt

name *** age height weight

1 alice f 13 56.5 84.0

2 becka f 13 65.3 98.0

3 gail f 14 64.3 90.0

4 karen f 12 56.3 77.0

5 kathy f 12 59.8 84.5

6 mary f 15 66.5 112.0

7 sandy f 11 51.3 50.5

8 sharon f 15 62.5 112.5

9 tammy f 14 62.8 102.5

10 alfred m 14 69.0 112.5

11 duke m 14 63.5 102.5

12 guido m 15 67.0 133.0

13 james m 12 57.3 83.0

14 jeffrey m 13 62.5 84.0

15 john m 12 59.0 99.5

16 philip m 16 72.0 150.0

17 robert m 12 64.8 128.0

18 thomas m 11 57.5 85.0

19 william m 15 66.5 112.0

summary(lm.sol)

call:

lm(formula = weight ~ height, data = rt)

residuals:

min 1q median 3q max

-17.6807 -6.0642 0.5115 9.2846 18.3698

coefficients:

estimate std. error t value pr(>|t|)

(intercept) -143.0269 32.2746 -4.432 0.000366 ***

height 3.8990 0.5161 7.555 7.89e-07 ***

---signif. codes: 0 『***』 0.001 『**』 0.01 『*』 0.05 『.』 0.1 『 』 1

residual standard error: 11.23 on 17 degrees of freedom

multiple r-squared: 0.7705, adjusted r-squared: 0.757

f-statistic: 57.08 on 1 and 17 df, p-value: 7.887e-07

#這是乙個最基本的r語言回歸模型的結果,其中,按照這些資料,可以得到身高和體重的模型:height=-143.02+3.899*weight,

其中,相關係數r—squared,0.77,

p-value:7.887e-7,

可以認為是顯著的。

R語言 時間序列分析

時間序列分析 1.對時間序列的描述 2.利用前面的結果進行 ts是時間序列的英文簡稱 可以使用sys.date 函式檢視當前系統的時間 用seq函式創造連續的時間點 ts函式生成時間序列,可以很方便的將向量轉化成時間序列 egsales round runif 50,min 50,max 100 s...

學習筆記(3 R語言入門基礎 建立矩陣

立即學習 矩陣 matrix 是將資料按行和列組織資料的一種資料物件,相當於二位陣列。語法格式 matrix data na,nrow 1,ncol 1,byrow false,dimnames null data 矩陣的元素,預設為na,即未給出元素值,各項為na nrow 矩陣的行數,預設為1 ...

R語言 時間序列的建立及時間序列模型

一 時間序列的建立 時間序列的建立函式為 ts 函式的引數列表如下 ts data na,start 1,end numeric frequency 1,deltat 1,ts.eps getoption ts.eps class names 引數說明 data 這個必須是乙個矩陣,或者向量,再或者...