| Hua2013 {SoilR} | R Documentation |
Atmospheric radiocarbon for the period 1950-2010 from Hua et al. (2013)
Description
Atmospheric radiocarbon for the period 1950-2010 reported by Hua et al. (2013) for 5 atmospheric zones.
Usage
data(Hua2013)
Format
A list containing 5 data frames, each representing an atmospheric zone. The zones are: NHZone1: northern hemisphere zone 1, NHZone2: northern hemisphere zone 2, NHZone3: northern hemisphere zone 3, SHZone12: southern hemisphere zones 1 and 2, SHZone3: southern hemisphere zone 3. Each data frame contains a variable number of observations on the following 5 variables.
Year.ADYear AD
mean.Delta14Cmean value of atmospheric radiocarbon reported as Delta14C
sd.Delta14Cstandard deviation of atmospheric radiocarbon reported as Delta14C
mean.F14Cmean value of atmospheric radiocarbon reported as fraction modern F14C
sd.F14standard deviation of atmospheric radiocarbon reported as fraction modern F14C
Details
This dataset corresponds to Table S3 from Hua et al. (2013). For additional details see the original publication.
Source
doi:10.2458/azu_js_rc.v55i2.16177
References
Hua Q., M. Barbetti, A. Z. Rakowski. 2013. Atmospheric radiocarbon for the period 1950-2010. Radiocarbon 55(4):2059-2072.
Examples
plot(Hua2013$NHZone1$Year.AD, Hua2013$NHZone1$mean.Delta14C,
type="l",xlab="Year AD",ylab=expression(paste(Delta^14,"C (per mille)")))
lines(Hua2013$NHZone2$Year.AD,Hua2013$NHZone2$mean.Delta14C,col=2)
lines(Hua2013$NHZone3$Year.AD,Hua2013$NHZone3$mean.Delta14C,col=3)
lines(Hua2013$SHZone12$Year.AD,Hua2013$SHZone12$mean.Delta14C,col=4)
lines(Hua2013$SHZone3$Year.AD,Hua2013$SHZone3$mean.Delta14C,col=5)
legend(
"topright",
c(
"Norther hemisphere zone 1",
"Norther hemisphere zone 2",
"Norther hemisphere zone 3",
"Southern hemisphere zones 1 and 2",
"Southern Hemispher zone 3"
),
lty=1,
col=1:5,
bty="n"
)