Every time I think I know what's going on, suddenly there's another layer of complications.
2017年5月22日星期一
Difference between 'link function' and 'canonical link function' for GLM
https://stats.stackexchange.com/questions/40876/difference-between-link-function-and-canonical-link-function-for-glm
2017年5月20日星期六
Community structure in social and biological networks
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC122977/pdf/pq1202007821.pdf
2017年5月17日星期三
Introduction to Tensors
https://www.grc.nasa.gov/www/k-12/Numbers/Math/documents/Tensors_TM2002211716.pdf
2017年5月12日星期五
interchange of the expected value and summation
The expectation of a sum of nonnegative random variables indexed by the integers is equal to the sum of the expectations, whether the resulting number is finite or infinite. This follows from Fubini's theorem for nonnegative functions (often called Tonelli's theorem) applied to the product measure which is the product of P by the counting measure on the integers.
2017年5月8日星期一
2017年5月7日星期日
Create an empty list and flatten the list
x<-c(2.3,0.3,5.2,3.1,1.1,0.9,2.0,0.7,1.4,0.3)
y<-c(0.8,2.8,4.0,2.4,1.2,0.0,6.2,1.5,28.8,0.7)
L<-vector("list",10)
for(i in 1:10){
L[[i]]<-y[i]-x #key is [[]] operator here
}
d<-unlist(L)
median(d) # This is Hodges-Lehmann estimator
y<-c(0.8,2.8,4.0,2.4,1.2,0.0,6.2,1.5,28.8,0.7)
L<-vector("list",10)
for(i in 1:10){
L[[i]]<-y[i]-x #key is [[]] operator here
}
d<-unlist(L)
median(d) # This is Hodges-Lehmann estimator
订阅:
博文 (Atom)