CommencerCommencez gratuitement

The survival object

Before you start any survival analysis, you need to transform your data into the right form, the survival object. Remember: daysSinceFirstPurch contains the time between first and second order. boughtAgain tells you if there was a second order or not.

The survival package is already loaded to your workspace.

Cet exercice fait partie du cours

<cours>Machine Learning for Marketing Analytics in R</cours>
Voir le cours

Instructions de l’exercice

  • Create a survival object from dataNextOrder using Surv(). Store the result as survObj.
  • Take a look at the object's structure.

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# Create survival object
survObj <- ___(dataNextOrder$___, dataNextOrder$___)

# Look at structure
___(survObj)
Modifier et exécuter le code