intercept————截距
formula————公式
residual standard error殘差標準差
:1.319
on
10
degrees of freedom 自由度為10
f-statistic: 182.6 on 1 and 10 df, p-value: 9.505e-08 #f統計量和p值,10df表示10自由度
formular語法 模型 備註
y ~ a y
=
β
0
+
β
1a
帶y截距的直線
y ~
-
1
+
a y
=
β
1a
沒有截距的直線,即強制通過原點
y ~ a
+
i(a^
2
) y
=
β
0
+
β
1a
+
β
2a2
多項式模型。注意函式i()允許常規數學符號
y ~ a
+
b y
=
β
0
+
β
1a
+
β
2b
沒有互動項的a和b一階模型
y ~ a:b y
=
β
0
+
β
1ab
僅有互動項的a和b一階模型
y ~ a
*
b y
=
β
0
+
β
1a
+
β
2b
+
β
3ab
a和b全一階模型,等同於:y ~ a
+
b
+
a:b
y ~ (a
+
b
+
c) ^
2
y
=
β
0
+
β
1a
+
β
2b
+
β
3c
+
β
4ab
+
β
5bc
+
β
6ac
中英文本串中統計英文本元個數
工作中遇到如下問題,搜尋網路資源得以解決,記錄以供參考。問題 在一段中英文混合的字串中,通過關關鍵字查詢到某位置p。需要擷取p前後一定長度字元,構成乙個新的字串。問題解析 由於是中貢混合的字串,當向前後擷取長度不當時會出現擷取到中文半個字的情況。面引起出現亂碼的情況。方法 首先確定字串的編碼格式,由...
python 詞頻統計 中英文
calhamletv1.py 英文統計程式 def gettext txt open hamlet.txt r read txt txt.lower for ch in txt txt.replace ch,將文字中特殊字元替換為空格 return txt hamlettxt gettext wor...
Python 文字詞頻統計中英文
統計一段英文中 出現次數最多的幾個單詞 def get text text open eng.txt r read text text.lower 所有單詞都替換成小寫 for ch in 去噪,歸一化處理,把所有特殊符號替換為空格 text text.replace ch,return text ...