我有一个包含邮政编码的数据集,我想从该数据集中提取荷兰邮政编码(#### [A-z] {2})。
我已经尝试在数据框中创建一个矩阵。 到现在为止,它仍给我以下警告消息:“在stri_extract_first_regex(string,pattern,opts_regex = opts(pattern))中: 参数不是原子向量;胁迫”
zipcodes <- as.matrix(zipcodes)
zipcodes$dutch <- str_extract(zipcodes, pattern = "\\b[1-9]{1}\\d{3}(\\s)?[A-z]{2}\\b")
你们当中有人知道我该怎么做吗?