The `tm` package (shorthand for Text Mining Infrastructure in R) provides a framework for text mining applications within R.
1
vote
1answer
46 views
Recreate same document term matrix with new data
Suppose I have text based training data and testing data. To be more specific, I have two data sets - training and testing - and both of them have one column which contains text and is of interest for ...
-1
votes
0answers
41 views
Sublime text 2 - JSON tmlanguage programming
I writing a parser to highlight the syntax for the sublime text 2, got stuck with this program, appreciate it if some1 can help.
abc register1,reg2,reg3 some_comments
The above is instruction for ...
4
votes
0answers
152 views
How to make R tm corpus of 100 million tweets
I want to make a text corpus of 100 million tweets using R’s distributed computing tm package (called tm.plugin.dc). The tweets are stored in a large MySQL table on my laptop. My laptop is old, so I ...
1
vote
1answer
39 views
how to flatten a list of lists in R
The tm package extends c so that, if given a set of PlainTextDocuments it automatically creates a Corpus. Unfortunately, it appears that each PlainTextDocument must be specified separately.
e.g. if ...
1
vote
1answer
36 views
Trying to remove words from a DocumentTermMatrix in order to use topicmodels
So, I am trying to use the topicmodels package for R (100 topics on a corpus of ~6400 documents, which are each ~1000 words). The process runs and then dies, I think because it is running out of ...
1
vote
1answer
37 views
make vector of PlainTextDocuments
I have this closure, which is meant to parse one PlainTextDocument into several child PlainTextDocuments while transferring and augmenting the metadata:
segment_doc <- function(doc) {
txt = ...
0
votes
0answers
35 views
R tm package DataframeSource import
Reading a CSV into R and wanting to make a corpus from it with the tm package, but not getting the desired results. Currently, when I read in a CSV of text, then inspect the corpus, the data is all ...
1
vote
1answer
45 views
txt file produces NA in R package tm (textmining)
I would like to read a txt file and do some text mining approaches. When I used the tm package in R, I got lots of error messages. For example, If I wanted to correlate the most frequent words, I got ...
0
votes
0answers
67 views
Text mining with r package tm(): “Error in if (vectorized && (length <= 0))”
I am trying to use tm() on a data frame with texts, but this error keeps on appearing: "Error in if (vectorized && (length <= 0)) stop("vectorized sources must have positive length") :
...
2
votes
1answer
123 views
extract semi-structured text from Word documents
I want to text-mine a set of files based on the below form. I can create a corpus where each file is a document (using tm), but I'm thinking it might be better to create a corpus where each section ...
0
votes
1answer
28 views
how to set author for each doc in a corpus by parsing doc ID
I have a tm Corpus object like this:
> summary(corp.eng)
A corpus with 154 text documents
The metadata consists of 2 tag-value pairs and a data frame
Available tags are:
create_date creator
...
1
vote
1answer
113 views
Text-mining with the tm-package - word stemming
I am doing some text mining in R with the tm-package. Everything works very smooth. However, one problem occurs after stemming (http://en.wikipedia.org/wiki/Stemming). Obviously, there are some words, ...
2
votes
2answers
99 views
how do I create a corpus of *.docx files with tm?
I have a mixed filetype collection of MS Word documents. Some files are *.doc and some are *.docx. I'm learning to use tm and I've (more or less*) successfully created a corpus composed of the *.doc ...
0
votes
0answers
66 views
How to build a Corpus with tm library from a collection of spanish files
I have 3 files in spanish:
El café esta bueno pero caro.
¡El thé esta ligero pero bueno!
¿Lo bueno esta en el gusto?
I wish to read them and to make a Corpus
library(tm)
txteje ...
1
vote
1answer
39 views
R tm package. Where I can find a detailed description of the components of the TermDocumentMatrix? i, j, v
As an example this is a tdm:
str(AssociatedPress)
List of 6
$ i : int [1:302031] 1 1 1 1 1 1 1 1 1 1 ...
$ j : int [1:302031] 116 153 218 272 299 302 447 455 548 597 ...
$ v : int ...
1
vote
2answers
73 views
Segmentation fault when using tm struck in C
So I posted my code below (sorry, I know it is long), but I'm getting a segmentation fault when I try to do any operation using the tm struct. I have no idea why I'm getting this seg fault, I'm pretty ...
0
votes
0answers
50 views
findAssocs and numeric(0)
I am attempting to find words associated with a particular word in a term document matrix using the tm package.
I always getting numeric(0) as my result
example;
findAssocs(myTdm, "evrensel", 0.25)
...
0
votes
1answer
58 views
CLUTO Document Term Matrix to tm DocumentTermMatrix
I have a document term matrix in cluto format:
#Document #Term #TotalItem
term-x weight-x term-y weight-y (for only nonzeros terms, a row per document)
Instead of a corpus, I want to create ...
1
vote
1answer
106 views
R tm package used for predictive analytics. How one classifies a new document?
This is a general question about the procedures concerning text mining. Suppose one has a Corpus of documents classified as Spam/No_Spam. As standard procedure one pre-process the data, removing ...
3
votes
1answer
155 views
how to read text in a table from a csv file
I am new using the tm package. I want to read a csv file which contents one column with 2000 texts and a second column with a factor variable yes/no into a Corpus. My intention is to convert the text ...
1
vote
1answer
79 views
Produce a DocumentTermMatix that includes given terms in R
I'm producing a DocumentTermMatrix using tm on a corpus, using only terms which occur quite frequently. (ie MinDocFrequency=50)
Now I want to produce a DTM with a different corpus, but counting ...
2
votes
1answer
226 views
Make dataframe of top N frequent terms for multiple corpora using tm package in R
I have several TermDocumentMatrixs created with the tm package in R.
I want to find the 10 most frequent terms in each set of documents to ultimately end up with an output table like:
corpus1 ...
0
votes
0answers
30 views
r:tm, create structure for txt like xml
I am using R tm package for doing some analysis.
I have 30 txt files of resume,
each has 3 parts: career objective, working experience and education.
How can I create structured information when ...
1
vote
2answers
162 views
R Text mining - how to change texts in R data frame column into several columns with word frequencies?
I have a data frame with 4 columns. Column 1 consists of ID's, column 2 consists of texts (about 100 words each), column 3 and 4 consist labels.
Now I would like to retrieve word frequencies (of the ...
0
votes
0answers
66 views
tm package installation fails in R
I'm trying to install tm package on my Fedora machine using install.packages("tm"), but i'm getting compilation error while it tries to install.Here's a snapshot of errors i get,
In file included ...
0
votes
1answer
122 views
R remove stopwords from a character vector using %in%
I have a data frame with strings that I'd like to remove stop words from. I'm trying to avoid using the tm package as it's a large data set and tm seems to run a bit slowly. I am using the tm ...
2
votes
2answers
165 views
R: add title to wordcloud graphics / png
I have some working R code that generates a tag cloud from a term-document matrix.
Now I want to create a whole bunch of tag clouds from many documents, and to inspect them visually at a later time. ...
0
votes
0answers
75 views
R: is it possible to manipulate a corpus made with tm?
I made a corpus out of a dataframe called userbios that has three columns; list_id, twitter_id and bio.
I then turned the userbios$bio column into a corpus and ran LDA on it.
However, I realized ...
3
votes
1answer
83 views
Can't find documentation for R function row_sums and col_sums
I am trying to resolve my own question regarding changing the tf-idf weighting function in the tm package: Changing tf-idf weight function: weight not by occurrences of term, but by number of ...
0
votes
0answers
155 views
Changing tf-idf weight function: weight not by occurrences of term, but by number of documents containing term
As I understand the code, when the tm package computes tf-idf weights (using the weightTfIdf function), it does so based on the number of times each term occurs in the corpus. I would like to change ...
2
votes
1answer
96 views
R: tm Textmining package: Doc-Level metadata generation is slow
I have a list of documents to process, and for each record I want to attach some metadata to the document "member" inside the "corpus" data structure that tm, the R package, generates (from reading in ...
1
vote
1answer
154 views
LDA with topicmodels, how can I see which topics different documents belong to?
I am using LDA from the topicmodels package, and I have run it on about 30.000 documents, acquired 30 topics, and got the top 10 words for the topics, they look very good. But I would like to see ...
3
votes
2answers
243 views
How to calculate readabilty in R with the tm package
Is there a pre-built function for this in the tm library, or one that plays nicely with it?
My current corpus is loaded into tm, something like as follows:
s1 <- "This is a long, informative ...
1
vote
1answer
39 views
How can I manually set the document id in a corpus?
I am creating a Copus from a dataframe. I pass it as a VectorSource as there is only one column I want to be used as the text source. This works find however I need the document ids within the corpus ...
1
vote
2answers
92 views
How do I extract contents from a koRpus object in R?
I'm using the tm package, and looking to get the Flesch-Kincaid scores for a document using R. I found the koRpus package has some a lot of metrics including reading-level, and started using that. ...
0
votes
2answers
160 views
Split sample of R tm corpus objects
I am using the R tm package, trying to split my corpus into a training set and a testing set, and to encode this into metadata for selection. What's the easiest way to do this (suppose I'm trying to ...
2
votes
1answer
267 views
Trying to get tf-idf weighting working in R
I am trying to do some very basic text analysis with the tm package and get some tf-idf scores; I'm running OS X (though I've tried this on Debian Squeeze with the same result); I've got a directory ...
0
votes
1answer
214 views
R tm removeWords stopwords is not removing stopwords
I'm using the R tm package, and find that almost none of the tm_map functions that remove elements of text are working for me.
By 'working' I mean for example, I'll run:
d <- tm_map(d, ...
4
votes
1answer
99 views
Search for mispellings of a word in a character vector with R - “inverse” spell checker
I am text mining a large database to create indicator variables which indicate the occurence of certain phrases in a comments field of an observation. The comments were entered by technicians, so the ...
1
vote
1answer
271 views
Frequency Per Term - R TM DocumentTermMatrix
I'm very new to R and cannot quite wrap my head around DocumentTermMatrixs. I have a DocumentTermMatrix created with the TM package, it has the term frequency and the terms inside it but I cannot ...
2
votes
1answer
153 views
How to write custom removePunctuation() function to better deal with Unicode chars?
In the source code of the tm text-mining R-package, in file transform.R, there is the removePunctuation() function, currently defined as:
function(x, preserve_intra_word_dashes = FALSE)
{
if ...
0
votes
2answers
144 views
run an .jar file [duplicate]
Possible Duplicate:
How to run a JAR file
I have a problem that is driving me crazy for a while:
1 week ago I downloaded this file :" droidAtScreen-1.0.1.jar" I could doubleclick it and I ...
1
vote
1answer
200 views
Example of tm use
Can you give an example of use of tm (I don't know how to initialize that struct) where the current date is written in this format y/m/d?
0
votes
1answer
68 views
Issues with strptime()
I am using the function strptime() to go from a string to a struct tm. However, when I check the fields, there are a few that are not filled. So I checked the man pages but it seems like I am doing ...
1
vote
1answer
229 views
R DocumentTermMatrix control list not working
I have two following DTM-s:
dtm <- DocumentTermMatrix(t)
dtmImproved <- DocumentTermMatrix(t,
control=list(minWordLength = 4, minDocFreq=5))
When I impement this, I see two ...
1
vote
0answers
106 views
Unicode symbols when creating DocumentTermMatrix
I am using the TM package from CRAN in R. I have problems creating a DocumentTermMatrix based on a Corpus. The problems is when I create a TermDocumentMatrix based on an UTF-8 corpus then some words ...
1
vote
0answers
94 views
wordcloud package: get “Error in strwidth(…) : invalid 'cex' value”
I am using the tm and wordcloud packages in R 2.15.1.
I am trying to make a word cloud from a DTM. Here is the code:
library(wordcloud)
thedtmsparse = inspect(sparse)
trymatrix = t(thedtmsparse)
...
0
votes
2answers
217 views
How can I extract specific content from an HTML file to TXT format?
So my problem is that I have extracted a lot of forum posts into separate txt files which are now on my harddrive. Each file contains information I would like to extract, some of which I already have ...
-5
votes
1answer
126 views
tm package in R hangs with small dataset
I have a data.frame of 30k records (company name and other attributes). dba_nm is the company name field with longest element < 60 characters.
The R session's memory usage goes up from 100MB to ...
1
vote
1answer
317 views
Reading CSV file into Corpus - tm package in R
I would like to read the contents of the csv file into a dataframesource but when i try to create a corpus it always says
**argument "x" is missing, with no default**
The code is
corpus1 <- ...

