こんにちは。R の knitr にこのグラフがあり、それを 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}