'paste' 函数中报告一个空分隔符。 快速修复将 'paste' 调用替换为 'paste0' 函数。

示例:

paste("a", "b", sep = '')

当您应用快速修复时,代码更改为:

paste0("a", "b")