以下は、quantmod を使用して関数をグラフ化するための R コードですが、これの制限は、1 つのグラフしか出力できないことです。関数に複数のグラフを出力させる方法はありますか?コンテンツをに設定し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")