作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到此错误
Error in stri_detect_regex(string, pattern, opts_regex = opts(pattern)) : Incorrectly nested parentheses in regexp pattern. (U_REGEX_MISMATCHED_PAREN)
# find occurrences of initial dataframe
named_RN$search <- map_int(named_RN$V1, function(x){sum(str_detect(final_RN$named_RN, pattern = x))})
named_RN$V1
好像
aldosterone
renin
potassium
calcitrol
final_RN$named_RN
好像
aldosterone, creatinine
human, warfarin
aspirin, renin, calcitrol
magnesium, calcitrol
named_RN
内创建一个新变量显示每个短语的原始计数,因此
named_RN
好像
V1 search
aldosterone 1
renin 0
potassium 0
calcitrol 2
最佳答案
由于您使用的是固定字符串,而不是正则表达式,因此您需要告诉正则表达式引擎将模式用作纯文字文本。你可以这样使用它:
str_detect(final_RN$named_RN, fixed(x))
^^^^^^^^
fixed(x)
only matches the exact sequence of bytes specified byx
. This is a very limited “pattern”, but the restriction can make matching much faster.
coll(x)
如果您想在执行不区分大小写的搜索时使用人类语言整理规则。
关于r - R 中的 stri_detect_regex 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45828985/
我收到此错误 Error in stri_detect_regex(string, pattern, opts_regex = opts(pattern)) : Incorrectly nested
我是一名优秀的程序员,十分优秀!