0
我見過的錯誤幾個線程plot.ts()和多個圖形我有時間序列 -
cannot plot more than 10 series as "multiple"
但沒有真正解釋(1)這是怎麼回事,(2)如何解決它如果你有多個圖。
我有12個不同的文件。 每個文件是1行〜240-250個數據點。這是時間序列數據。值範圍從文件到文件變化。
我想製作一張圖表,將它們全部放在一張圖上。所以像par(mfrow =(4,3))。
但是,當我使用我的代碼時,它給了我上述錯誤。
for(cand in cands)
{
par(mfrow=c(4,3))
for(type in types)
{
## Construct the file name
curFile = paste(folder, cand, base, type, close, sep="")
## Read in the file
ts = read.delim(curFile, sep="\t", stringsAsFactors=FALSE, header=FALSE, row.names=NULL,fill=TRUE, quote="", comment.char="")
plot.ts(ts)
}
}
Doh!那真是一個非常愚蠢的時刻。我也同意這個問題!那只是我試圖快速瀏覽我的代碼並將實際名稱縮短爲可讀內容而不必擔心太多內容的時刻。謝謝您的幫助! – Jibril
很高興幫助!我們都有這些「doh」時刻。 :) – Jason