Description Usage Format Source Examples
Winning times for the Sydney to Hobart Yacht Race. An annual sail yacht race over 1170km, from Sydney's harbour, to Hobart in Tasmania. The race is infamous for the rough conditions, long distance, and large number of dropouts in some years. The data include the winning time, and the number of starting yachts, and the number of yachts reaching the finish.
1 |
A data frame with 72 rows and 5 variables:
Yearinteger Year race was held
Timedouble Total time (days)
fleet_startinteger Number yachts at start
fleet_finishinteger Number yachts at finish
Time_recorddouble Record race up to this year
<https://en.wikipedia.org/wiki/Sydney_to_Hobart_Yacht_Race>
1 2 3 4 5 | data(sydney_hobart_times)
with(sydney_hobart_times, {
plot(Year, Time)
lines(Year, Time_record, type='s', col="red")
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.