2006s

    Plantae's continued development

    Prior to general release, plantae is moving web hosts. This seems like a good time to point out that all of plantae’s code is hosted at Google Code. The project has great potential and deserves consistent attention. Unfortunately, I can’t continue to develop the code. So, if you have an interest in collaborative software, particularly in the scientific context, I encourage you to take a look.

    Text processing with Unix

    I recently helped someone process a text file with the help of Unix command line tools. The job would have been quite challenging otherwise, and I think this represents a useful demonstration of why I choose to use Unix.

    The basic structure of the datafile was:

    ; A general header file ;
    1
    sample: 0.183 0.874 0.226 0.214 0.921 0.272 0.117
    2
    sample: 0.411 0.186 0.956 0.492 0.150 0.278 0.110
    3
    ...
    

    In this case the only important information is the second number of each line that begins with “sample:”. Of course, one option is to manually process the file, but there are thousands of lines, and that’s just silly.

    We begin by extracting only the lines that begin with “sample:”. grep will do this job easily:

    grep "^sample" input.txt
    

    grep searches through the input.txt file and outputs any matching lines to standard output.

    Now, we need the second number. sed can strip out the initial text of each line with a find and replace while tr compresses any strange use of whitespace:

    sed 's/sample: //g' | tr -s ' '
    

    Notice the use of the pipe (|) command here. This sends the output of one command to the input of the next. This allows commands to be strung together and is one of the truly powerful tools in Unix.

    Now we have a matrix of numbers in rows and columns, which is easily processed with awk.

    awk '{print $2;}'
    

    Here we ask awk to print out the second number of each row.

    So, if we string all this together with pipes, we can process this file as follows:

    grep "^sample" input.txt | sed 's/sample: //g' | tr -s ' ' | awk '{print $2;}' > output.txt
    

    Our numbers of interest are in output.txt.

    Images from the Hinode spacecraft

    Japan’s Hinode spacecraft has started taking pictures of the Sun. The detail of the shots is amazing and gives a sense of the Sun’s structure.

    First light image

    Stern Review on the economics of climate change

    The Stern Review has been in the news recently for predicting that global warming could cost up to $7 trillion if not addressed soon. Of course, this has caused quite a stir as it offsets many of the, likely unfounded, concerns that fixing climate change will cost too much. The full report is available online and should be a quite interesting, if long, read.

    Climate change and public relations

    This article in the Guardian explores the use of public relations firms by big oil companies to fight against the science of climate change. Apparently, the same tactics and people even of the tobacco industry’s fight against the link between smoking and cancer are being employed by the oil industry.

    Principles of Technology Adoption

    Choosing appropriate software tools can be challenging. Here are the principles I employ when making the decision:

    • Simple: This seems obvious, but many companies fail here. Typically, their downfall is focussing on a perpetual increase in feature quantity. I don’t evaluate software with feature counts. Rather, I value software that performs a few key operations well. Small, focussed tools result in much greater productivity than overly-complex, all-in-one tools. 37 Signals’ Writeboard is a great example of a simple, focussed tool for collaborative writing.
    • Open formats: I will not choose software that uses proprietary or closed data formats. Closed formats cause two main difficulties:

    • I must pay the proprietor of a closed format for the privilege of accessing my data. Furthermore, switching to a new set of software may require translating my data or, even worse, losing access altogether. Open formats allow me to access my data at any time and with any appropriate tool.

    • My tools are limited to the range of innovations that the proprietor deems important. Open formats allow me to take advantage of any great new tools that come available.

    • Flexible: As my requirements ebb and flow, I shouldn’t be locked into the constraints of a particular tool. The best options are internet-based, subscription plans. If I need more storage space or more access for collaborators, I simply choose a new subscription plan. Then, if things slow down, I can move back down to a basic plan and save money. The online backup service Strongpace, for example, has a subscription plan tied to the amount of storage and number of users required.

    • Network: A good tool must be fully integrated into the network. The ability to collaborate with anyone or access my data from any computer are great boons to productivity. Many of the best tools are completely internet based; all that is required to use them is a web browser. This also means that the tool is monitored and maintained by a collection of experts and that the tool can be upgraded at any time without being locked into a version-number update. Furthermore, with data maintained on a network, many storage and backup problems are addressed. GMail, for example, stores over 2GB of email, free of charge with an innovative user interface.

    Exemplars

    These are some of my favourite adherents to the principles outlined above:

    TED-- Hans Rosling

    An excellent presentation regarding the use of country statistics. The visualizations are particularly effective.

    Resumes & Spam Filters

    Since I’m looking for work, I found this post rather interesting. They’ve applied a spam filter to resumes to automatically filter through candidates. The output is only as good as the reference resumes used to construct the filter, but still an intriguing idea. My results are below. Most importantly the probability of me not being hired is 1.15e-59, which is a very, very small number. Perhaps I should add this fact to my resume?

    I will now tell you what i think about this CV
    The CV you entered fits better in the Hired group than the NotHired group.
    CLASSIFY fails; success probability: 0.0000  pR: -58.9382
    Best match to file #1 (Hired.css) prob: 1.0000  pR: 58.9382 
    Total features in input file: 7478
    #0 (NotHired.css): features: 61899, hits: 7125, prob: 1.15e-59, pR: -58.94
    #1 (Hired.css): features: 794351, hits: 90156, prob: 1.00e+00, pR:  58.94
    The CV you entered fits best into the Guru catagory.
    CLASSIFY succeeds; success probability: 1.0000  pR: 8.1942
    Best match to file #0 (Guru.css) prob: 1.0000  pR: 8.1942 
    Total features in input file: 7478
    #0 (Guru.css): features: 559355, hits: 66154, prob: 1.00e-00, pR:   8.19
    #1 (Intergrator.css): features: 163555, hits: 17093, prob: 2.17e-29, pR: -28.66
    #2 (Administrator.css): features: 241282, hits: 24729, prob: 8.45e-25, pR: -24.07
    #3 (Developer.css): features: 485579, hits: 54104, prob: 6.39e-09, pR:  -8.19
    

    The Canary Project-- Global Warming Documented in Photos

    The Canary Project is an intriguing idea. They are documenting the effects of global warming through pictures. Since many people, apparently, don’t believe the abundant scientific evidence, perhaps some startling pictures will be convincing.

    RSiteSearch

    I’m not sure how this escaped my notice until now, but `RSiteSearch` is a very useful command in R. Passing a string to this function loads up your web browser with search results from the R documentation and mailing list. So, for example:

    RSiteSearch("glm")
    

    will show you everything you need to know about using R for generalised linear models.

    R module for ConTeXt

    I generally write my documents in Sweave format. This approach allows me to embed the code for analyses directly in the report derived from the analyses, so that all results and figures are generated dynamically with the text of the report. This provides both great documentation of the analyses and the convenience of a single file to keep track of and work with.

    Now there is a new contender for integrating analysis code and documentation with the release of an R module for ConTeXt. I prefer the clean implementation and modern features of ConTeXt to the excellent, but aging, LaTeX macro package that Sweave relies on. So, using ConTeXt for my documents is a great improvement.

    Here’s a simple example of using this new module. I create two randomly distributed, normal variables, test for a correlation between them, and plot their distribution.

    \usemodule[r]
    
    \starttext
    Describe the motivation of the analyses first.
    
    Now create some variables.
    
    \startRhidden
    x <- rnorm(1000, 0, 1)
    y <- rnorm(1000, 0, 1)
    \stopRhidden
    
    Are they correlated?
    
    \startR
    model <- lm(y ~ x, data = test)
    summary(model)
    \stopR
    
    Now we can include a figure.
    
    \startR
    pdf("testFigure.pdf")
    plot(x, y)
    dev.off()
    \stopR
    
    \startbuffer
    \placefigure{Here it is}{\externalfigure[testFigure]}
    \stopbuffer
    \getbuffer
    
    \stoptext
    

    Processing this code produces a pdf file with all of the results produced from R, including the figure.

    I had some minor difficulties getting this to work on my OS X machine, through no fault of the r module itself. There are two problems. The first is that, by default, write18 is not enabled, so ConTeXt can’t access R directly. Fix this by editing /usr/local/teTeX/texmf.cnf so that “shell_escape = t”. The next is that the R module calls @texmfstart@ which isn’t directly accessible from a stock installation of TeX. The steps required are described in the “Configuration of texmfstart” section of the ConTeXt wiki. I modified this slightly by placing the script in ~/bin so that I didn’t interfere with the installed teTeX tree. Now everything should work.

    CBC Radio 3

    The CBC Radio 3 podcast is an excellent source for independent, Canadian music. They have recently added a playlist feature that helps you search for your favourite artists and create your own radio station. Definitely worth checking out.

    expand.grid

    Here’s a simple trick for creating experimental designs in R: use the function expand.grid.

    A simple example is:

      treatments <- LETTERS[1:4]
      levels <- 1:3
      experiment <- data.frame(expand.grid(treatment=treatments, level=levels))
    

    which produces:

       treatment level
    1          A     1
    2          B     1
    3          C     1
    4          D     1
    5          A     2
    6          B     2
    7          C     2
    8          D     2
    9          A     3
    10         B     3
    11         C     3
    12         D     3
    

    Now, if you want to randomize your experimental treatments, try:

      experiment[sample(dim(experiment)[1]), ]
    

    sample randomly chooses numbers from a vector the same length as the experiment data frame without replacement. The square brackets then use this random sample to subsample from the experiment data frame.

    Burning your money

    Burning our money by Marc Jaccard is a useful overview of some policy options for reducing greenhouse gas emissions. Unfortunately, this article is part of the Globe’s subscribers-only section, but his paper, Burning Our Money to Warm the Planet, is available from the CD Howe Institute.

    Heart of the Matter

    CBC’s Ideas has been running a series of shows on heart disease called “Heart of the Matter”. Episode 2 is particularly interesting from a statistical perspective, as the episode discusses several difficulties with the analysis of drug efficacy. Some highlights include:

    Effect sizes Some of the best cited studies for the use of drugs to treat heart disease show a statistically significant effect of only a few percentage points improvement. Contrast this with a dramatic, vastly superior improvement from diet alone.

    Response variables The focus of many drug studies has been on the reduction of cholesterol, rather than reductions in heart disease. Diet studies, for example, have shown dramatic improvements in reducing heart attacks while having no effect on cholesterol levels. Conversely, drug studies that show a reduction in cholesterol show no change in mortality rates.

    Blocking of data Separate analyses of drug efficacy on female or elderly patients tend to show that drug therapy increases overall mortality. Lumping these data in with the traditional middle-aged male patients removes this effect and, instead, shows a significant decrease in heart disease with drug use.

    The point here isn’t to make a comment on the influence of drug companies on medical research. Rather, such statistical concerns are common to all research disciplines. The primary concern of such analyses should be: what is the magnitude of the effect of a specific treatment on my variable of interest? The studies discussed in the Ideas program suggest that much effort has been devoted to detecting significant effects of drugs on surrogate response variables regardless of the size of the effect.

    Plantae resurrected

    Some technical issues coupled with my road-trip-without-a-laptop conspired to keep Plantae from working correctly. I’ve repaired the damage and isolated Plantae from such problems in the future. My apologies for the downtime.

    Competitive Enterprise Institute

    The Competitive Enterprise Institute has put out some ads that would be quite funny if they weren’t so misleading. I imagine that most viewers can see through the propaganda of the oil industry. Regardless, in the long-term, industries that invest in efficient and low-polluting technology will win and the members of CEI will be out of business.

    CO2: They call it pollution. We call it life.

    Google Importer

    Google Importer is a useful Spotlight plugin that includes Google searches in Spotlight searches. This helps integrate your search into one interface, which seems like an obvious progression of Apple’s Spotlight technology.

    Google calendar

    Google Calendar has been featured in the news recently, and for good reason. Many of us have wanted access to a good online calendar program. One of my favourite features of Google Calendar is its integration with Gmail. If Gmail detects an event in your email message, a link appears that sends the information to Google Calendar. This is incredibly convenient and, seems to me, is one of the great promises of computers: reducing the tedious work that occupies much of our day.

    An Inconvenient Truth

    This looks like an incredibly important film. I hope it breaks all of the box office records.

Older Posts →