Removed the burn-in from a trace
Examples
# Create a trace from one to and including ten
v <- seq(1, 10)
# Remove the first ten percent of its values,
# in this case removes the first value, which is one
w <- remove_burn_in(trace = v, burn_in_fraction = 0.1)