I was looking for a list of power plants in Europe in 2008. I didn’t find one. You know why? It just got created in late 2008, and I just found it in 2009.
More beta below the bump.
I was looking for a list of power plants in Europe in 2008. I didn’t find one. You know why? It just got created in late 2008, and I just found it in 2009.
More beta below the bump.
I’m trying to figure out which open source statistical/computation package to use. I used to use Matlab. It’s good, but expensive, and it has WAY more features than I need.
I know I should be running things on Unix, but right now I’m on Windows XP. I sometimes putty into a Unix server and run things.
R looks very good. That’s my next langauge to learn.
Octave is pretty good. It provides syntax almost identical to Matlab. In 3.0, it now has support for Multidimensional Cell Arrays. These are arrays that can hold any data type. Most common for me is an array of strings. If you load data that is mixed text and numeric, then your data will probably be read as a cell-array.
One thing I have noticed is that the cell-arrays are really quite slow.
I had a ~10000 x 10 csv file.
Column 1 had mixed numeric and strings. They were 6 character codes, and about 2/3 of them did not have alphabetical characters. I needed to convert these to strings, and then do a sort and some other processing. I basically had to traverse each element of the first row and do the datatype change individually.
The process was VERY slow. In fact, I think Excel would be better at such tasks.
Here are a few tips:
Also check out this page that benchmarks the math/science packages with a set of standard routines: