问题描述
在 R 我有一个函数定义来计算两个字符串之间的交集:
in R I have a function define to calculate intersection between 2 strings:
containedin <- function(t1,t2){
return length(Reduce(intersect, strsplit(c(t1,t2), "\\s+")))
}
我想将此函数应用于包含 2 个字符串列的数据框:data.selected[c('keywords','title')]
I want to apply this function on a data frame that contains 2 string columns:data.selected[c('keywords','title')]
keywords title
1 Samsung UN48H6350 48" Samsung UN48H6350 48" Full 1080p Smart HDTV 120Hz with Wi-Fi +$50 Visa Gift Card
2 Samsung UN48H6350 48" Samsung UN48H6350 48" Full HD Smart LED TV -Bundle- (See Below for Contents)
3 Samsung UN48H6350 48" Samsung UN48H6350 48" Class Full HD Smart LED TV -BUNDLE- See below Details
4 Samsung UN48H6350 48" Samsung UN48H6350 48" Full HD Smart LED TV With BD-H5100 Blu-ray Disc Player
5 Samsung UN48H6350 48" Samsung UN48H6350 48" Smart 1080p Clear Motion Rate 240 LED HDTV
6 Samsung UN48H6350 48" Samsung UN48H6350 - 48-Inch Full HD 1080p Smart HDTV 120Hz with Wi-Fi
7 Samsung UN48H6350 48" Samsung 6350 Series UN48H6350 48" 1080p HD LED LCD Internet TV NEW
8 Samsung UN48H6350 48" Samsung Un48h6350af 75" 1080p Led-lcd Tv - 16:9 - Hdtv 1080p - (un75h6350afxza)
9 Samsung UN48H6350 48" Samsung UN48H6350 - 48" HD 1080p Smart HDTV 120Hz Bundle
10 Samsung UN48H6350 48" Samsung UN48H6350 - 48-Inch Full HD 1080p Smart HDTV 120Hz with Wi-Fi, (R#416)
如何使用 apply 函数应用到这 2 列上,以返回带有结果的新列?
How do I use the apply function to be applied on these 2 columns, to return a new column with the result ?
推荐答案
首先,你的 return
语句应该真的给你一个错误.你可能是说
First of all, your return
statement should really give you an error. You probably mean
containedin <- function(t1,t2){
length(Reduce(intersect, strsplit(c(t1,t2), "\\s+")))
}
无论如何,您可以使用 mapply
来解决您的问题.
Anyway, you can use mapply
to solve your problem.
mapply(containedin,
as.character(data.selected[, 'keywords']),
as.character(data.selected[, 'title']))
as.character
仅在 class(data.selected[, 'keywords'])
是 factor
(而不是 )
The as.character
is only necessary if class(data.selected[, 'keywords'])
is factor
(instead of character
)
这篇关于R 在数据框列上应用用户定义函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!