Hola, tengo este diagrama en knitr en R, que quiero transferir a mi archivo Latex PDF, pero es demasiado grande y ocupa como 3/4 de una página:
compPlot ( mdata$GDP, fitted( cesNewton), xlab = "Real Values",
ylab = "Fitted Values", col="red", main="Newton Method",
cex.main=1, cex.lab=0.75, cex.axis=0.75)
¿Cómo puedo hacerlo más pequeño y también centrarlo en el medio de la página?
\documentclass{article}
\begin{document}
<<>>=
library(micEconCES)
library(readxl)
DATA_FOR_2 <- read_excel("~/Documents/DATA FOR 2.xlsx",
col_types = c("text", "text", "text", "text", "text",
"numeric", "numeric","numeric", "numeric", "numeric",
"numeric", "numeric", "numeric", "numeric", "numeric",
"numeric", "numeric", "numeric", "numeric", "numeric",
"numeric"))
mdata <- DATA_FOR_2[-c(46:62), ]
cesKmenta <- cesEst( yName = "GDP", xNames = c( "Capital", "Labour" ),
data = mdata, method = "Kmenta", vrs = TRUE )
library( "miscTools" )
compPlot ( mdata$GDP, fitted( cesKmenta ), xlab = "Real Values",
ylab = "Fitted Values", col="red", main="Newton Method",
cex.main=1, cex.lab=0.75, cex.axis=0.75)
@
\end{document}
Lo siento, no sé cómo agregar datos reproducibles, solo enumeré la hoja de Excel que importé.
Respuesta1
Debe usar la opción de fragmento para controlar la salida y leer esta página esencial:https://yihui.name/knitr/options/
Este es un MRE que responde a tu pregunta.
\documentclass{article}
\begin{document}
\SweaveOpts{concordance=TRUE}
\begin{figure}
\centering
<<minimal, fig=TRUE, height=12>>=
data(mtcars)
plot(mtcars[,1:2])
@
\end{figure}
\end{document}