用空格分隔输出块块 RMarkdown
Separate with spaces to output chunk pieces RMarkdown
我有以下块代码
## 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)))
```
转换为pdf格式后,是这样的:
如何在我标记的 "yellow" 处添加空格?。我想要的是将 R 代码与之前的输出片段分开一点。
您想在输出中包含 R 代码和结果。在 R 代码中包含其他命令也会将它们带到输出中。因此,您可以考虑将 R 块拆分为多个部分,以便通过 tex 添加 space。
以下是在代码块之间添加 space 的三个选项。
## Generamos modelo (CAFEINA incluído)
```{r tidy=TRUE}
(modelo<-randomForest(diagnostico~.,data=datos.entreno))
```
<!-- Option #1 -->
```{r tidy=TRUE}
# La importancia de las variables
vimp<-as.data.frame(modelo$importance)
vimp[order(vimp$MeanDecreaseGini),,drop=FALSE]
```
\leavevmode
\newline <!-- Option #2 -->
```{r tidy=TRUE}
# Hacer predicciones
predicciones <- predict(modelo, datos.test)
predicciones
```
\vspace{30mm} <!-- Option #3 -->
```{r tidy=TRUE}
# Matriz de confusión
(mc <- with(datos.test,table(predicciones, diagnostico)))
```
我有以下块代码
## 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)))
```
转换为pdf格式后,是这样的:
如何在我标记的 "yellow" 处添加空格?。我想要的是将 R 代码与之前的输出片段分开一点。
您想在输出中包含 R 代码和结果。在 R 代码中包含其他命令也会将它们带到输出中。因此,您可以考虑将 R 块拆分为多个部分,以便通过 tex 添加 space。 以下是在代码块之间添加 space 的三个选项。
## Generamos modelo (CAFEINA incluído)
```{r tidy=TRUE}
(modelo<-randomForest(diagnostico~.,data=datos.entreno))
```
<!-- Option #1 -->
```{r tidy=TRUE}
# La importancia de las variables
vimp<-as.data.frame(modelo$importance)
vimp[order(vimp$MeanDecreaseGini),,drop=FALSE]
```
\leavevmode
\newline <!-- Option #2 -->
```{r tidy=TRUE}
# Hacer predicciones
predicciones <- predict(modelo, datos.test)
predicciones
```
\vspace{30mm} <!-- Option #3 -->
```{r tidy=TRUE}
# Matriz de confusión
(mc <- with(datos.test,table(predicciones, diagnostico)))
```