2017-03-17 9 views
0

私は私のラップトップ上DataCampからのコードを複製したエラー():「型のオブジェクトを複製しようとする試みは、 『閉鎖』」

library(xts) 
plot.zoo(flights_xts, plot.type = "multiple", ylab = labels) 
plot.zoo(flights_xts, plot.type = "single", lty = lty) 
legend("right", lty = lty, legend = labels) 

と上記の実行中に、次のエラーを得ていましたコードの三行:

Error in rep(ylab, length.out = ngraph) : 
attempt to replicate an object of type 'closure' 

Error in strwidth(legend, units = "user", cex = cex, font = text.font) : 
cannot coerce type 'closure' to vector of type 'character' 

答えて

1

引用符が( "")関数パラメータで使用されているときにエラーが固定されている:

plot.zoo(flights_xts, plot.type = "multiple", ylab = "labels") 
plot.zoo(flights_xts, plot.type = "single", lty = "lty") 
legend("right", lty = "lty", legend = "labels") 

オンラインでDataCamp.com環境でこれらの引用符は必要ではなかったけれども、まだ興味深いです。それについてのコメント?

+0

DataCamp環境には、オブジェクト 'lty < - " lty "'と 'labels < - " labels "'を含めることができます。しかし、あなたが特定のコースの練習を参照しない限り、私は推測することができます。 –

関連する問題