Monthly Archives: September 2009

Comments on “Introduction to Scientific Programming and Simulation Using R”

September 17, 2009
By
Comments on “Introduction to Scientific Programming and Simulation Using R”

I've just been reading Introduction to Scientific Programming and Simulation Using R by Owen Jones, Robert Maillardet, and Andrew Robinson. It seems like it would make a good introductory book for a course on, as the title suggests, scientific programm...

Read more »

R clinic this week: Regression Modeling Strategies in R

September 16, 2009
By

At this week's R clinic Frank Harrell will unveil the new rms (Regression Modeling Strategies) package that is a replacement for the R Design package.  He will demonstrate the differences with Design, especially related to enhanced graphics for displaying effects in regression models.  Frank will also discuss the implementation of quantile regression in rms.  The rms package website has...

Read more »

Multiple Linear Regression

September 14, 2009
By
Multiple Linear Regression

A multiple linear regression (MLR) model that describes a dependent variable y by independent variables x1, x2, ..., xp (p > 1) is expressed by the equation as follows, where the numbers α and βk (k = 1, 2, ..., p) are the parameter...

Read more »

Find the function you’re looking for in R

September 14, 2009
By

Any R user no matter what level of experience has had trouble finding the package or the function to do what you want to do and then figuring out how to use it.  The sos package in R just made that a lot easier. First, fire up R, then install the sos package (don't omit the quotes): install.packages("sos") It'll ask you to...

Read more »

Chicago Half Marathon 2009

September 13, 2009
By

Today it was once again time for the Chicago Half Marathon (which I have now been running in 2003, 2004, 2005, 2006, 2007 and 2008). Conditions were much much better than last year's very heavy rainfall---we were once again treated to a sunny and clear Chicago sky. It was however a little on the humid side and got...

Read more »

Finding an R function

September 13, 2009
By
Finding an R function

Suppose you want a function to fit a neural network. What’s the best way to find it? Here are three steps that help to find the elusive function relatively quickly. First, use help.search("neural") or the shorthand ??neural. This will search the help files of installed packages for the word “neural”. Actually, fuzzy matching is used

Read more »

Finding an R function

September 13, 2009
By

Suppose you want a function to fit a neural network. What’s the best way to find it? Here are three steps that help to find the elusive function relatively quickly. First, use help.search("neural") or the shorthand ??neural. This will search the help...

Read more »

New R package: sos

September 12, 2009
By

Searching help pages of contributed packages just got easier with the release of the new sos package. This is a replacement for and substantial enhancement of the existing "RSiteSearch" package. To learn more about it, try vignette("sos") We hope...

Read more »

CO2: Emissions & Changes in Atmospheric Levels

September 11, 2009
By
CO2: Emissions & Changes in Atmospheric Levels

In previous posts, I have shown the 1750-2008 global CO2 emission trends and the atmospheric CO2 concentrations at Mauna Loa, Hawaii. In this post, I compare annual CO2 emissions with annual changes in atmospheric CO2.  The resulting chart shows the portion of CO2 emissions that remains in the atmosphere and the portion that

Read more »

MATLAB style stem plot with R

September 10, 2009
By
MATLAB style stem plot with R

Recently I wanted to plot an impulse response function with R and missed the MATLAB style stem plot for doing it. I couldn't find an R function for it with a quick Google search so I made my own. So here is the function and a small example:

#The function
stem <- function(x,y,pch=16,linecol=1,clinecol=1,...){
if (missing(y)){
    y = x
 ...

Read more »