您好,登錄后才能下訂單哦!
# 讀取數據
data=read.csv("artificial-cover.csv")
# 查看部分數據
head(data)
## tree.cover shurb.grass.cover
## 1 13.2 16.8
## 2 17.2 21.8
## 3 45.4 48.8
## 4 53.6 58.7
## 5 58.5 55.5
## 6 63.3 47.2
#######先調用spline包
library ( splines )
###########用lm擬合,主要注意部分是bs(age,knots=c(...))這部分把自變量分成不同部分
fit =lm(tree.cover~bs(shurb.grass.cover ,knots =c(25 ,40 ,60) ),data=data )
############進行預測,預測數據也要分區
pred= predict (fit , newdata =list(shurb.grass.cover =data$shurb.grass.cover),se=T)
#############然后畫圖
plot(fit)
# 可以構造一個相對復雜的 LOWESS 模型(span參數取小一些),然后和一個簡單的模型比較,如:
## `geom_smooth()` using method = 'loess'
# 其他數據
data=data[,1:4]
head(data)
## year Soil vegetation SEM
## 1 1999 -3.483724 -2.528836 2.681003
## 2 1999 -3.452582 -2.418049 2.348640
## 3 1999 -3.350827 -2.590552 2.696037
## 4 1999 -3.740395 -2.933848 3.627112
## 5 1999 -3.465906 -2.694211 2.333755
## 6 1999 -3.381802 -2.788154 2.656276
#####因變量 Soil
#######先調用spline包
library ( splines )
###########用lm擬合,主要注意部分是bs(age,knots=c(...))這部分把自變量分成不同部分
#############然后畫圖
plot(fit)無錫×××醫院 https://yyk.familydoctor.com.cn/20612/
# 可以構造一個相對復雜的 LOWESS 模型(span參數取小一些),然后和一個簡單的模型比較,如:
library(ggplot2)
## `geom_smooth()` using method = 'loess'
# 總趨勢
# 按0前后分組
#####因變量 SEM
#######先調用spline包
library ( splines )
###########用lm擬合,主要注意部分是bs(age,knots=c(...))這部分把自變量分成不同部分
fit =lm(SEM~bs(vegetation ,knots =c(-2 ,0 ,1) ),data=data )
############進行預測,預測數據也要分區
pred= predict (fit , newdata =list(vegetation =data$vegetation),se=T)
#############然后畫圖
plot(fit)
# 可以構造一個相對復雜的 LOWESS 模型(span參數取小一些),然后和一個簡單的模型比較,如:
x<-data$vegetation
y<-data$SEM
# 總趨勢
## `geom_smooth()` using method = 'loess'
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。