Aan de slagBegin gratis

Transforming Sales Data (3/3)

We can now put the different pieces of the sales process we have created so far together. However, before doing so, let's make sure both contain the same variables and uniform lifecycle terminology.

Deze oefening maakt deel uit van de cursus

Business Process Analytics in R

Bekijk cursus

Interactieve oefening met praktijkervaring

Probeer deze oefening door deze voorbeeldcode aan te vullen.

# Recode the lifecycle column of validate_history
validate_history_recode <- validate_history %>%
  mutate(
    lifecycle = fct_recode(
      ___,
      ___ = "started",
      ___ = "completed"
    )
  
Code bewerken en uitvoeren