当我尝试使用cut
快速离散化连续变量时,我开始遇到一个非常奇怪的错误,找不到针对其的文档。
quakes$depth_factor <- cut(quakes$depth, breaks = c(-Inf, 50, 100, 500, Inf),
labels = c("50 m or less", "51-100 m", "99-500 m", "501 m or more"))
Warning messages:
1: In rm.paranthesis(x1) : NAs introduced by coercion
2: In rm.paranthesis(x2) : NAs introduced by coercion
其他所有东西都工作正常,但是当我重新启动R时,问题就消失了……所以我不知道这是否对任何人都可以重现。我只是花了很多时间试图找出这个奇怪的错误(有错别字?)。
这是否表明R解释器中的某些内容损坏并且必须重新启动会话?