Thursday, June 21, 2007

Thinkpad T60 Memory Installation

http://www-307.ibm.com/pc/support/site.wss/MIGR-62825.html
Easy!

Wednesday, June 20, 2007

TeraGrid Related Stuff
Java-based GSI-SSH Term:
http://grid.ncsa.uiuc.edu/gsi-sshterm/

Single Sign-On on TeraGrid:
http://www.teragrid.org/userinfo/access/index.php

Friday, June 15, 2007

Zebra sent me a video on Youtube. Following it I found this website: http://www.ted.com/. A lot of new and funny stuff inside.

Lili sent me this for my laptop update use: http://www.cpuid.com/cpuz.php.

Thursday, June 14, 2007

gnuplot
Haven't used gnuplot for a long time and reheat it now.
gnuplot 4.2: http://www.gnuplot.info/
a good start tutorial: http://www-128.ibm.com/developerworks/library/l-gnuplot/
Some complicated plots here: http://mos.stanford.edu/papers/Plotting.pdf

Tuesday, June 05, 2007

How to construct a histogram in Excel (without Data Analysis Toolpak)




This example uses the following simple data set (quiz scores for twenty students): 5, 7, 8, 3, 7, 7, 1, 9, 6, 8, 5, 6, 7, 8, 7, 9, 6, 8, 6, 6. To construct a histogram with five bars:
Type numbers in column A, starting at A1. Press ENTER after each number.
In column B, starting at B1 type 2, 4, 6, 8. Note that it is not necessary to write 0 or 10.
Because the histogram will have 5 separate bins, select 5 contiguous cells, for example c3:c7.
Click in the formula bar (the long white bar with the equals sign) and type =frequency(a1:a20, b1:b4). The first array contains the data; the second array contains the bin separators.
Press Control-Shift-Enter simultaneously. You will see an array of 5 numbers.
To draw the graph, you can use the chart wizard: Highlight the number in column C. Click on the chart icon at the top of the page. Choose columns. Click on "next". A bar graph will appear in the window. To make the graph comprehensible to others, add some titles by clicking on "next". For titles, type "histogram of quiz scores". For category, type "quiz score". For value on the y axis, type "quiz score frequency". Click "finish".
The graph that you see now is technically a bar graph, NOT a histogram, because there are spaces between all the bars. Histograms should not have spaces between the bars unless there are categories that have no observations. To rectify this, double click on one of the bars. Another window will appear. Click on "options" and change the gap width to 0. Then click "OK". Now it’s a legitimate histogram.