0

これが単なるバグなのか他の問題なのかは 100% わかりませんが、パッケージcharts.PerformanceSummary()からの出力のタイトルのフォント サイズを変更するにはどうすればよいですか?PerformanceAnalytics

これは、元のフォントサイズの6倍にフォントサイズを大きくすることを望んでいた再現可能な例です...

require(PerformanceAnalytics)
v <- rnorm(100,0.001,0.003)
charts.PerformanceSummary(xts(v,Sys.Date()-(100:1)),main="random title")
charts.PerformanceSummary(xts(v,Sys.Date()-(100:1)),main="random title", cex.main=6)

出力は同じように見えますが、タイトルのサイズは変わりません....

4

1 に答える 1

1

プロットする前に設定cex.mainします。

par(cex.main = 6)
charts.PerformanceSummary(xts(v,Sys.Date()-(100:1)),main="random title")

アップデート

試すことができる別の方法 (ただし、最初に少しテストする必要があります) は、title()関数を使用することです。

# Set `main` to `""`
charts.PerformanceSummary(xts(v,Sys.Date()-(100:1)), main = "")
# You'll have to experiment with the best combination of `line` and `cex.main`
title(main="random title", line = -2, outer = TRUE, cex.main=3)
于 2012-10-31T04:10:43.983 に答える