duplicate | R Documentation |
A simple function to duplicate the contents of a SoilProfileCollection
object. Old profile IDs are saved as a site-level attribute (oldID
) and new IDs are generated using a numeric serial number.
duplicate(x, times = 3, oldID = ".oldID")
x |
a |
times |
requested number of copies |
oldID |
site-level attribute used to store the original profile IDs |
a SoilProfileCollection
object
D.E. Beaudette
# sample data
data('sp4')
# promote to SPC
depths(sp4) <- id ~ top + bottom
# duplicate each profile 2 times
d <- duplicate(sp4, times = 2)
# graphical check
par(mar = c(0, 0, 3, 1))
plotSPC(d, color = 'Ca', width = 0.25)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.