我的R脚本有问题。该脚本有时会正确执行,但其他脚本无效。
这是错误消息:
seq.default中的错误(min.alpha,max.alpha,length = length(colors)): 'from'不能是NA,NaN或无限召唤:情节...... .performance.plot.canvas - > rev - > seq - > seq.default
有什么想法吗?
答案 0 :(得分:1)
尝试使用您编写的函数中名为browser()的方法调试代码。
a<- function(){
browser() // the execution will halt here and then you can see your values
}