ПочатиПочніть безкоштовно

Converting to durations and periods

Intervals are the most specific way to represent a span of time since they retain information about the exact start and end moments. They can be converted to periods and durations exactly: it's possible to calculate both the exact number of seconds elapsed between the start and end date, as well as the perceived change in clock time.

To do so you use the as.period(), and as.duration() functions, parsing in an interval as the only argument.

Try them out to get better representations of the length of the monarchs reigns.

Ця вправа є частиною курсу

Working with Dates and Times in R

Переглянути курс

Інструкції до вправи

  • Create new columns for duration and period that convert reign into the appropriate object.
  • Examine the name, duration and period columns.

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

# New columns for duration and period
monarchs <- monarchs %>%
  mutate(
    duration = ___,
    period = ___) 
    
# Examine results    
monarchs %>%
  select(___)
Редагувати та запускати код