下面是我使用 quantmod 绘制函数的 R 代码,但是这样做的限制是我只能输出一个图形。有没有办法让你的函数输出多个图形,比如通过设置内容text/html
并以某种方式使用它渲染多个图形?你能告诉我怎么做吗?
tickergraph = function()
{
setContentType ("image/png")
temp <- tempfile ()
png (temp, type="cairo")
ticker <- toupper(POST$t);
getSymbols(ticker)
chartSeries(eval(parse(text=ticker)))
dev.off ()
sendBin (readBin (temp, 'raw', n=file.info(temp)$size))
unlink (temp)
}
if(!is.null(POST$t))
{
tickergraph()
print(POST)
}
print("Cannot Plot when some of the values are NULL")