search for: rclimate_cts_latest

Displaying 1 result from an estimated 1 matches for "rclimate_cts_latest".

2011 Jan 21
2
Unexpected Gap in simple line plot
...csv file of monthly climate observations that I store on-line. When I download the csv file and plot one of the series, I get a gap even though there is data for the missing point. Here is a snippet to show the problem. ## Strange plot results link <- "http://processtrends.com/files/RClimate_CTS_latest.csv" cts <- read.csv(link, header=T) ## Simple line plot - gap for no reason plot(cts$yr_frac, cts$GISS, type="l", xlim=c(1982, 1983),xaxs="i", yaxs="i") ## May, 1982 observation missing ## Add points to plot in red, to see if May shows up...