-
Advanced R data manipulation functions
http://www.ats.ucla.edu/stat/r/library/advanced_function_r.htm *apply, sweep, and column/row functions.
Tags:
-
Tikhonov regularization
http://en.wikipedia.org/wiki/Tikhonov_regularization Called ridge regression in statistics. Regularization: Ridge Regression and the LASSO is another good reference. In R, use lm.ridge(). Here’s sample code that describes not just lm.ridge, but also pls(partial least square), lasso, and pcr(principal component regression).
Tags:
-
Automatic model selection
Leaps package has regsubsets function that automatically finds best model for each model size. Here’s example from ?regsubsets. Let’s find the best model using Adjusted R square. Build a model using them. When doing model selection, instead of using automatic methods recklessly, one should consider if the model really makes sense based on the prior…
Tags:
-
I/O Virtualization
http://queue.acm.org/detail.cfm?id=2071256 Nice intro to IO in virtualization; benefits, challenges, and solutions.
Tags:
-
Bufferbloat
http://en.wikipedia.org/wiki/Bufferbloat Buffers in the middle of network may interfere with TCP congestion control and may slow down a network.
Tags:
-
Cholesky decomposition
http://en.m.wikipedia.org/wiki/Cholesky_decomposition In linear algebra, the Cholesky decomposition or Cholesky triangle is a decomposition of a Hermitian, positive-definitematrix into the product of a lower triangular matrix and itsconjugate transpose. It was discovered by André-Louis Choleskyfor real matrices. When it is applicable, the Cholesky decomposition is roughly twice as efficient as the LU decomposition for solving systems of linear equations.[1] In a loose, metaphorical sense, this can be thought of as the matrix analogue…
Tags:
-
Best Approximation Theorem
When we want to find of and if there is no exact answer X, then the least square approximation of is the projection of onto in column vector space . That’s because, if column vectors in are linearly independent, consists of a vector space. If there is no exact answer , then . Thus, exists…
Tags:
-
C++ and Beyond 2011
http://channel9.msdn.com/Shows/Going+Deep/C-and-Beyond-2011-Scott-Andrei-and-Herb-Ask-Us-Anything 다양한 C++0x feature 대한 설명 동영상입니다. 유명한 분들이 나오시네요.
Tags:
-
Test and Test-and-set (TATAS)
http://en.m.wikipedia.org/wiki/Test%5Fand%5FTest-and-set Instead of simple test and set, loop over test to save expensive memory access. One should be really careful to avoid double checked locking failure, and this shouldn’t be used in high level language in general.
Tags:
-
Change of Basis
http://en.wikipedia.org/wiki/Change_of_basis#Change_of_basis_for_vectors In linear algebra, change of basis refers to the conversion of vectors and linear transformations between matrix representations which have different bases.
Tags: