| loti | R Documentation |
GISS (Goddard Institute for Space Studies) Land-Ocean Temperature Index (LOTI) data for the years 1880 to 2019, giving anomalies in 0.01 degrees Celsius, from the 1951 - 1980 average.
loti
A data frame with 140 observations on the following 19 variables.
Yeara numeric vector
Jana numeric vector
Feba numeric vector
Mara numeric vector
Apra numeric vector
Maya numeric vector
Juna numeric vector
Jula numeric vector
Auga numeric vector
Sepa numeric vector
Octa numeric vector
Nova numeric vector
Deca numeric vector
JtoDJan-Dec averages
D.NDec-Nov averages
DJFDec-Jan-Feb averages
MAMMar-Apr-May
JJAJun-Jul-Aug
SONSept-Oct-Nov
JtoD2011January to December average, from data accessed in 2011
Data are the Combined Land-Surface Air and Sea-Surface Water Temperature
Anomalies (Land-Ocean Temperature Index, LOTI), in 0.01 degrees Celsius, from
https://data.giss.nasa.gov/gistemp/tabledata_v4/GLB.Ts+dSST.txt
Data in the column JtoD2011 was accessed 2011-09-06.
Also available is a CSV file, with anomalies in degrees Celsius.
GISTEMP Team, 2020: GISS Surface Temperature Analysis (GISTEMP), version 4. NASA Goddard Institute for Space Studies. Dataset accessed 2020-11-13 at https://data.giss.nasa.gov/gistemp/.
data(loti)
plot(JtoD ~ Year, data=loti)
## Add 11 point moving average
ma11 <- filter(loti$JtoD, rep(1,11)/11, sides=2)
lines(loti$Year, ma11)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.