I have the following chunk code
## Generamos modelo (CAFEINA incluído)
```{r tidy=TRUE}
(modelo<-randomForest(diagnostico~.,data=datos.entreno))
# La importancia de las variables
vimp<-as.data.frame(modelo$importance)
vimp[order(vimp$MeanDecreaseGini),,drop=FALSE]
# Hacer predicciones
predicciones <- predict(modelo, datos.test)
predicciones
# Matriz de confusión
(mc <- with(datos.test,table(predicciones, diagnostico)))
```
when it is converted in pdf format, it looks like this:
How can I add spaces in the "yellow" places I marked?. What i want is to separate a little bit more the R code from the previous output piece.