lo(..., span=0.5, degree=1)
Note that lo itself does no smoothing; it simply sets things up for gam.
y ~ Age + lo(Start, span=.5) # fit Start using a loess smooth with a span of 0.5. y ~ lo(Age) + lo(Start, Number) y ~ lo(Age, 0.5) # the argument name for span is not needed.