0
I have a data frame with several lines, in these lines I have a sentence that contains by default the word "Ad", I want to generate a new data frame that contains only the lines that in the sentence have the word "Ad". I’ve searched several links on how to do this in R but haven’t 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]))
It would be nice if you made your database, or a part of it, available for use as an example. Also, what have you tried? Also put your code
– Rafael Cunha