TM: Leia no quadro de dados, mantenha IDs de texto, construa DTM e junte -se a outro conjunto de dados

StackOverflow https://stackoverflow.com/questions/19850638

  •  29-07-2022
  •  | 
  •  

Pergunta

Estou usando o pacote tm.

Digamos que eu tenha um quadro de dados de 2 colunas, 500 linhas. A primeira coluna é o ID que é gerado aleatoriamente e tem caráter e número: "TXF87UYK" A segunda coluna é um texto real: "O tempo de hoje está bom. John foi correr. Blah, blá, ..."

Agora, quero criar uma matriz de termo de documento a partir desse quadro de dados.

Meu problema é que eu quero manter as informações de identificação para que, depois de obter a matriz de termo de documento, posso entrar nessa matriz com outra matriz que tem cada linha sendo outras informações (data, tópico, sentimento) de cada documento e cada linha é Identificado pelo documento ID.

Como eu posso fazer isso?

Pergunta 1: Como faço para converter esse quadro de dados em um corpus e manter as informações de identificação?

Pergunta 2: Depois de obter um DTM, como posso participar de outro conjunto de dados por ID?

Foi útil?

Solução

Primeiro, alguns dados de exemplo de https://stackoverflow.com/a/15506875/1036500

examp1 <- "When discussing performance with colleagues, teaching, sending a bug report or searching for guidance on mailing lists and here on SO, a reproducible example is often asked and always helpful. What are your tips for creating an excellent example? How do you paste data structures from r in a text format? What other information should you include? Are there other tricks in addition to using dput(), dump() or structure()? When should you include library() or require() statements? Which reserved words should one avoid, in addition to c, df, data, etc? How does one make a great r reproducible example?"
examp2 <- "Sometimes the problem really isn't reproducible with a smaller piece of data, no matter how hard you try, and doesn't happen with synthetic data (although it's useful to show how you produced synthetic data sets that did not reproduce the problem, because it rules out some hypotheses). Posting the data to the web somewhere and providing a URL may be necessary. If the data can't be released to the public at large but could be shared at all, then you may be able to offer to e-mail it to interested parties (although this will cut down the number of people who will bother to work on it). I haven't actually seen this done, because people who can't release their data are sensitive about releasing it any form, but it would seem plausible that in some cases one could still post data if it were sufficiently anonymized/scrambled/corrupted slightly in some way. If you can't do either of these then you probably need to hire a consultant to solve your problem" 
examp3 <- "You are most likely to get good help with your R problem if you provide a reproducible example. A reproducible example allows someone else to recreate your problem by just copying and pasting R code. There are four things you need to include to make your example reproducible: required packages, data, code, and a description of your R environment. Packages should be loaded at the top of the script, so it's easy to see which ones the example needs. The easiest way to include data in an email is to use dput() to generate the R code to recreate it. For example, to recreate the mtcars dataset in R, I'd perform the following steps: Run dput(mtcars) in R Copy the output In my reproducible script, type mtcars <- then paste. Spend a little bit of time ensuring that your code is easy for others to read: make sure you've used spaces and your variable names are concise, but informative, use comments to indicate where your problem lies, do your best to remove everything that is not related to the problem. The shorter your code is, the easier it is to understand. Include the output of sessionInfo() as a comment. This summarises your R environment and makes it easy to check if you're using an out-of-date package. You can check you have actually made a reproducible example by starting up a fresh R session and pasting your script in. Before putting all of your code in an email, consider putting it on http://gist.github.com/. It will give your code nice syntax highlighting, and you don't have to worry about anything getting mangled by the email system."
examp4 <- "Do your homework before posting: If it is clear that you have done basic background research, you are far more likely to get an informative response. See also Further Resources further down this page. Do help.search(keyword) and apropos(keyword) with different keywords (type this at the R prompt). Do RSiteSearch(keyword) with different keywords (at the R prompt) to search R functions, contributed packages and R-Help postings. See ?RSiteSearch for further options and to restrict searches. Read the online help for relevant functions (type ?functionname, e.g., ?prod, at the R prompt) If something seems to have changed in R, look in the latest NEWS file on CRAN for information about it. Search the R-faq and the R-windows-faq if it might be relevant (http://cran.r-project.org/faqs.html) Read at least the relevant section in An Introduction to R If the function is from a package accompanying a book, e.g., the MASS package, consult the book before posting. The R Wiki has a section on finding functions and documentation"
examp5 <- "Before asking a technical question by e-mail, or in a newsgroup, or on a website chat board, do the following:  Try to find an answer by searching the archives of the forum you plan to post to. Try to find an answer by searching the Web. Try to find an answer by reading the manual. Try to find an answer by reading a FAQ. Try to find an answer by inspection or experimentation. Try to find an answer by asking a skilled friend. If you're a programmer, try to find an answer by reading the source code. When you ask your question, display the fact that you have done these things first; this will help establish that you're not being a lazy sponge and wasting people's time. Better yet, display what you have learned from doing these things. We like answering questions for people who have demonstrated they can learn from the answers. Use tactics like doing a Google search on the text of whatever error message you get (searching Google groups as well as Web pages). This might well take you straight to fix documentation or a mailing list thread answering your question. Even if it doesn't, saying “I googled on the following phrase but didn't get anything that looked promising” is a good thing to do in e-mail or news postings requesting help, if only because it records what searches won't help. It will also help to direct other people with similar problems to your thread by linking the search terms to what will hopefully be your problem and resolution thread. Take your time. Do not expect to be able to solve a complicated problem with a few seconds of Googling. Read and understand the FAQs, sit back, relax and give the problem some thought before approaching experts. Trust us, they will be able to tell from your questions how much reading and thinking you did, and will be more willing to help if you come prepared. Don't instantly fire your whole arsenal of questions just because your first search turned up no answers (or too many). Prepare your question. Think it through. Hasty-sounding questions get hasty answers, or none at all. The more you do to demonstrate that having put thought and effort into solving your problem before seeking help, the more likely you are to actually get help. Beware of asking the wrong question. If you ask one that is based on faulty assumptions, J. Random Hacker is quite likely to reply with a uselessly literal answer while thinking Stupid question..., and hoping the experience of getting what you asked for rather than what you needed will teach you a lesson."

Coloque dados de exemplo em um quadro de dados ...

df <- data.frame(ID = sapply(1:5, function(i) paste0(sample(letters, 5), collapse = "")),
                 txt = sapply(1:5, function(i) eval(parse(text=paste0("examp",i))))
                 )

Aqui está a resposta para "Pergunta 1: Como converto esse quadro de dados em um corpus e consigo manter as informações de identificação?"

Usar DataframeSource e readerControl para converter o quadro de dados em corpus (de https://stackoverflow.com/a/15693766/1036500)...

require(tm)
m <- list(ID = "ID", Content = "txt")
myReader <- readTabular(mapping = m)
mycorpus <- Corpus(DataframeSource(df), readerControl = list(reader = myReader))

# Manually keep ID information from https://stackoverflow.com/a/14852502/1036500
for (i in 1:length(mycorpus)) {
  attr(mycorpus[[i]], "ID") <- df$ID[i]
}

Agora alguns dados de exemplo para sua segunda pergunta ...

Faça a matriz do prazo de documento de https://stackoverflow.com/a/15506875/1036500...

skipWords <- function(x) removeWords(x, stopwords("english"))
funcs <- list(content_transformer(tolower), removePunctuation, removeNumbers, stripWhitespace, skipWords)
a <- tm_map(mycorpus, FUN = tm_reduce, tmFuns = funcs)
mydtm <- DocumentTermMatrix(a, control = list(wordLengths = c(3,10)))
inspect(mydtm)

Faça outro conjunto de dados de exemplo para participar de ...

df2 <- data.frame(ID = df$ID,
                  date =  seq(Sys.Date(), length.out=5, by="1 week"),
                  topic =   sapply(1:5, function(i) paste0(sample(LETTERS, 3), collapse = "")) ,
                  sentiment = sample(c("+ve", "-ve"), 5, replace = TRUE)
                  )

Aqui está a resposta para "Pergunta 2: depois de obter um DTM, como posso participar de outro conjunto de dados por ID?"

Usar merge Para ingressar no DTM ao exemplo de conjunto de dados de datas, tópicos, sentimentos ...

mydtm_df <- data.frame(as.matrix(mydtm))
# merge by row.names from https://stackoverflow.com/a/7739757/1036500
merged <- merge(df2, mydtm_df, by.x = "ID", by.y = "row.names" )
head(merged)

      ID     date.x topic sentiment able actually addition allows also although
1 cpjmn 2013-11-07   XRT       -ve    0        0        2      0    0        0
2 jkdaf 2013-11-28   TYJ       -ve    0        0        0      0    1        0
3 jstpa 2013-12-05   SVB       -ve    2        1        0      0    1        0
4 sfywr 2013-11-14   OMG       -ve    1        1        0      0    0        2
5 ylaqr 2013-11-21   KDY       +ve    0        1        0      1    0        0
always answer answering answers anything archives are arsenal ask asked asking
1      1      0         0       0        0        0   1       0   0     1      0
2      0      0         0       0        0        0   0       0   0     0      0
3      0      8         2       3        1        1   0       1   2     1      3
4      0      0         0       0        0        0   0       0   0     0      0
5      0      0         0       0        1        0   0       0   0     0      0

Lá, agora você tem:

  1. Respostas para suas duas perguntas (normalmente este site é apenas uma pergunta por ... pergunta)
  2. Vários tipos de dados de exemplo que você pode usar quando fizer sua próxima pergunta (torna sua pergunta muito mais envolvente para as pessoas que podem querer responder)
  3. Espero que a sensação de que as respostas para suas perguntas já possam ser encontradas em outras partes do StackOverflow Tag, se você consegue pensar em como dividir suas perguntas em etapas menores.

Se este não Responda às suas perguntas, faça outra pergunta e inclua código para reproduzir seu caso de uso exatamente o que puder. Se isso faz Responda à sua pergunta, então você deve Marque como aceito (Pelo menos até que um melhor apareça, por exemplo, Tyler pode aparecer com uma linha de um impressionante QDAP pacote...)

Outras dicas

O QDAP 1.2.0 pode realizar as duas tarefas com pouca codificação, embora não seja um revestimento único ;-), e não necessariamente mais rápido que o de Ben (como key_merge é um invólucro de conveniência para merge). Usar todos os dados de Ben acima (o que torna minha resposta parecer menor quando não é muito menor.

## The code
library(qdap)
mycorpus <- with(df, as.Corpus(txt, ID))

mydtm <- as.dtm(Filter(as.wfm(mycorpus, 
     col1 = "docs", col2 = "text", 
     stopwords = tm::stopwords("english")), 3, 10))

key_merge(matrix2df(mydtm, "ID"), df2, "ID")

No código abaixo, "Conteúdo" deve ser minúscula, não mais alta, como no exemplo abaixo. Essa alteração preencherá corretamente o campo de conteúdo do corpus.

require(tm)
m <- list(ID = "ID", content = "txt")
myReader <- readTabular(mapping = m)
mycorpus <- Corpus(DataframeSource(df), readerControl = list(reader = myReader))

# Manually keep ID information from http://stackoverflow.com/a/14852502/1036500
for (i in 1:length(mycorpus)) {
  attr(mycorpus[[i]], "ID") <- df$ID[i]
}

Agora tente

mycorpus[[3]]$content

Houve uma atualização para o pacote da TM em dezembro de 2017 e o ReadTabular se foi

"Changes in tm version 0.7-2
SIGNIFICANT USER-VISIBLE CHANGES
DataframeSource now only processes data frames with the two mandatory columns "doc_id" and "text". Additional columns are used as document level metadata. This implements compatibility with Text Interchange Formats corpora (https://github.com/ropensci/tif)."

o que torna um pouco mais fácil obter sua identificação (e qualquer outra coisa que você precise) para cada documento em corpus, conforme descrito em https://cran.r-project.org/web/packages/tm/news.html

Também inventei esse problema, para as necessidades de alterar o ID de cada conteúdo, sugiro usar este código

for(k in 1:length(mycorpus))
{
  mycorpus[[k]]$meta$id <- mycorpus$ID[k]
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top