More linting
The last exercise was a little bit too easy. Try your hand at this one!
Este ejercicio forma parte del curso
Defensive R Programming
Instrucciones del ejercicio
- Fix the function according to the feedback received.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Fix the code
summarise_data = function(values)
{
c(mean(values),median(values))
}
stats<-summarise_data(runif(10))