I have a multi-line date frame, on these lines I have a sentence that contains the word "Ad" by default, I want to generate a new date frame that contains only the lines that in the phrase have the word "Advertisement". I have already looked at several links on how to do this in R but I have not found the solution yet.
Exemplo:
#Gerar um novo data frame com os dados a serem trabalhados das visualizações de anúncios
DadosAnuncios=data.frame(Usuário=Dados[,1],DescricaoURL=Dados[,6])
#Pegar somente as descrições que são dos anúncios
DadosAnuncios=DadosAnuncios[grep("Anúncio:", DadosAnuncios$DescricaoURL),]
View(table(DadosAnuncios[,2]))
Example 2:
Usuarios=c("Joao1", "Joao2", "Joao3", "Joao4")
Acessos=c("Página 01", "Página 02", "Anúncio: 01", "Anúncio: 02")
MeusDados=data.frame(Usuarios,Acessos)
DadosAnunciosTeste=MeusDados[grep("Anúncio:", MeusDados$Acessos),]
View(table(DadosAnunciosTeste[,2]))