Уменьшение размера участка

Уменьшение размера участка

Привет, у меня есть этот сюжет в knitr в R, который я хочу перенести в свой файл Latex PDF, но он слишком большой и занимает примерно 3/4 страницы:

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)

как сделать его меньше и при этом расположить по центру страницы?

\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}

Извините, я не знаю, как добавить воспроизводимые данные, я просто перечислил таблицу Excel, которую я импортировал.

решение1

Вам необходимо использовать опцию chunk для управления выводом и прочитать эту важную страницу:https://yihui.name/knitr/options/

Это MRE, которое отвечает на ваш вопрос

\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}

Связанный контент