GE498-ECI, Lecture 14: Enough theory, show me some action

This lecture review some tools for innovation and creativity support developed under the DISCUS project. We reviewed some of the uses of the technologies presented in the course when used on real-world marketing applications.

Apr 25, 2007 · 1 min · 34 words · Xavier Llorà

Principal Component Analysis in R

There are, at least :), two ways to compute the principal component analysis of a data set in R. The first one is from scratch computing eigenvectors and eigenvalues. It works as follows # # From scratch # cbind(1:10,1:10 + 0.25*rnorm(10)) -> myData myData - apply(myData,2,mean) -> myDataZM cov(myDataZM) -> cvm eigen(cvm,TRUE) -> eCvm t(eCvm$vector%*%t(myDataZM)) -> newMyData This simple code just transforms the data to align it with the principal components obtained. Of couse, the second way to compute them is using some of the functions that R provides in the stats package. ...

Apr 25, 2007 · 1 min · 116 words · Xavier Llorà

Online Feed Validator

I have been running into some problems with a feed generator I am using (yes, it is the one in WordPress MU, long story). However I found a useful tool, an on-line feed validator for Atom and RSS.

Apr 24, 2007 · 1 min · 38 words · Xavier Llorà

A programming IDE

Need one? Check Eclipse.

Apr 20, 2007 · 1 min · 4 words · Xavier Llorà

Eclipse Metrics Plugins

I have run into a couple of plugins for Eclipse to compute several measure about the code you have in your project. The one I currently use is Eclipse Metrics Plugin. This Eclipse plugin calculates various metrics for your code during build cycles and warns you, via the Problems view, of range violations for each metric. This allows you to stay continuously aware of the health of your code base. You may also export the metrics to HTML for public display or to CSV format for further analysis. ...

Apr 20, 2007 · 1 min · 115 words · Xavier Llorà