Performance Analytics 图表中的修改

Modifications in Performance Analytics charts

我正在 R 中可视化各种金融系列。为此,我正在使用 R 中的性能分析包。有什么方法可以修改这个包创建的图表,比如更改图表的标题、轴标题等。

library(PerformanceAnalytics)
library(xts)
library(zoo)
data<-managers
charts.PerformanceSummary(data$HAM1)

charts.PerformanceSummary 是一个灵活的函数。您可以在不同参数的帮助下进行修改。例如,要更改标题,只需指定主要参数。如果您想要交互式图表,您可以指定 plot.engine 参数。

charts.PerformanceSummary(data$HAM1,main="your_title")
charts.PerformanceSummary(data$HAM1,plot.engine="plotly")