Tagged Questions
0
votes
0answers
25 views
Issues when using randomForest in caret with ROC as optimization metric
I'm having an issue when constructing random forest models using caret. I have a dataset of about 46k rows and 10 columns (one of which is the optimization target). From this dataset, I'm trying to ...
-4
votes
0answers
30 views
Data Mining for unstructured data in R [closed]
Is it possible to do do clustering or some other data mining activities using R on unstructured data?
If yes, can someone please provide appropriate links to the same.
Thanking you in advance
-1
votes
1answer
63 views
What does this summary data mean? [closed]
I am using sample algae data to understand data mining a bit more, i have used the following commands:
> data(algae)
> algae <- algae[-manyNAs(algae),]
> clean.algae ...
0
votes
1answer
76 views
How could we know the ColumnName /attribute of items generated in Rules
Using arules package, 'apriori' returns a 'rules' object.
How can we make a query that - What exact column does the item(s) in rules {lhs, rhs} come from ?
Example:
I've some data in a tabular ...
0
votes
1answer
59 views
Good libraries in R or Python for analytics of network/graph data [closed]
Disclaimer: I have fairly straightforward/brute-force ways of solving my questions; the goal of the question is to learn better approaches and libraries that assist with these calculations.
I have a ...
0
votes
1answer
37 views
event log tabulation table
So I am not sure which if any tabulation function to use within R for my problem. Basically I have a set of Data (an event log) with various user-ids as the reference and then specific products for ...
0
votes
2answers
69 views
How to perform least squares regression in R given training and testing data with class labels?
I have a 63*62 training set and the class labels are also present. The test data is a 25*62 dimensions and has the class labels too. Given this how would I perform least squares regression? I am using ...
1
vote
2answers
86 views
R, DMwR-package, SMOTE-function won't work
I need to apply the smote-algorithm to a data set, but can't get it to work.
Example:
x <- c(12,13,14,16,20,25,30,50,75,71)
y <- c(0,0,1,1,1,1,1,1,1,1)
frame <- data.frame(x,y)
...
1
vote
1answer
75 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 ...
-4
votes
1answer
471 views
R k-means clustering data
in R, I have computed a k-means clustering as follows:
km = (mat2, centers=3)
where mat2 is a matrix of column vectors obtained by combining elements of a set of time series. There are 31 rows
Now ...
1
vote
0answers
77 views
What's a good way of storing R models for future scoring
Let's say I run random forest or kmeans. I get an R object. Now I want to save that model for future use. I thought PMML was a good format but then realized that R can't read PMML and turn it back ...
2
votes
1answer
251 views
JSON to R for Data Mining
I am trying to grab tweets using the Topsy Otter api, so I can perform some data mining on it for my dissertation.
So far, I have got:
library(RJSONIO)
library(RCurl)
tweet_data <- ...
1
vote
2answers
115 views
how to get all terminal nodes - weight & response prediction 'ctree' in r
Here's what I can use to list weight for all terminal nodes : but how can I add some code to get response prediction as well as weight by each terminal node ID :
say I want my output to look like ...
1
vote
1answer
174 views
Create Edge List From Ragged Data Frame in R (for network analysis)
I have a ragged data frame with each row as an occurrence in time of one or more entities, like so:
(time1) entitya entityf entityz
(time2) entityg entityh
(time3) entityo entityp entityk entityL
...
1
vote
1answer
241 views
show volume in each node using ctree , plot in R
can any one please show me how to add volume in each of the nodes , instead of the final node volume
t <- ctree(is_return ~ a + b + c)
plot(t, type="simple")
and my tree would look like
...
2
votes
1answer
307 views
questions on implementing AdaBoost algorithm
I am trying to implement AdaBoost algorithm, and have two questions.
1) At each iteration, the training data has to be re-sampled in accordance with a probability distribution. Should the size of ...
1
vote
1answer
121 views
Where can I find a basic implementation of the EM clustering algorithm for R? [closed]
I'm looking for a basic implementation of EM clustering in R. So far, what I can find seem to be specialized or 'some-assembly-required' versions of it. For example, the implementation from mclust ...
1
vote
0answers
104 views
Error occurs while using SPADE method in R
I'm currently mining sequence patterns using SPADE algorithm in R.
SPADE is included in arulesSequence package of R.
I'm running R on my CentOS 6.3 64bit.
For an exercise,
I've tried an example ...
2
votes
1answer
159 views
How do I make a randomForest model size smaller?
I've been training randomForest models in R on 7 million rows of data (41 features). Here's an example call:
myModel <- randomForest(RESPONSE~., data=mydata, ntree=50, maxnodes=30)
I thought ...
0
votes
1answer
77 views
First sample size is always 10 entries in caret RFE
I'm trying to implement my custom function for feature ranking with caret package. The problem is every time the summary function is called for the first time I get only 10 entries. This is not a ...
5
votes
2answers
2k views
Hierarchical Clustering: Determine optimal number of cluster and statistically describe Clusters
I could use some advice on methods in R to determine the optimal number of clusters and later on describe the clusters with different statistical criteria. I’m new to R with basic knowledge about the ...
0
votes
1answer
60 views
Filtering values out of two dimensional data in R, comparing themselves
I'm analyzing USA election data, candidates contribution, etc. So I got raw data from internet and trying to learn some R executing some exercises in it. This is a CSV file that I successfully ...
2
votes
1answer
997 views
Choosing eps and minpts for DBSCAN (R)?
I've been searching for an answer for this question for quite a while, so I'm hoping someone can help me. I'm using dbscan from the fpc library in R. For example, I am looking at the USArrests data ...
0
votes
1answer
44 views
Possible metrics to derive from a multitude of partially overlapping latency data? [closed]
I have a massive application littered with latency measurements which end up in log files, and which can be parsed out into a table like this:
SecsSinceNoon NumObjsMadeInFuncFoo SomeFuncBar ...
2
votes
1answer
137 views
fast computation of Tomek link in R
i want to implement tomek's link for dealing with unbalanced data.
This code is used for binary classification problem, where the 1 class is the majority class and the 0 class is the minority. X the ...
1
vote
1answer
1k views
Random Forest optimization with tuning and cross-validation
I'm working with a large data set, so hope to remove extraneous variables and tune for an optimal m variables per branch. In R, there are two methods, rfcv and tuneRF, that help with these two tasks. ...
2
votes
1answer
682 views
R randomForest's rfcv method
I would like to use rfcv to cull the unimportant variables from a data set before creating a final random forest with more trees (please correct and inform me if that's not the way to use this ...
1
vote
1answer
418 views
randomForest's importance only contains MeanDecreaseGini
I have two scripts which both generate random forests in R, which as far as I can work out have the same inputs, although my problem suggests this isn't the case. One of them returns an importance ...
3
votes
1answer
502 views
Cluster assignments differ sometimes in two DBSCAN implementations
I have implemented the DBSCAN algorithm in R, and i am matching the cluster assignments with the DBSCAN implementation of the fpc library. Testing is done on synthetic data which is generated as given ...
0
votes
1answer
160 views
Starting with Complex Networks / SNA. Turning datasets into expected format
I'm just starting to get to grips with ideas and techniques behind complex networks and social network analysis. I seem to always trip up and get stuck at the data preparation stage. I often have a ...
5
votes
1answer
1k views
How to perform collaborative filtering in R
I'm have matrix data containing some null values. To fill the null values, I'd like to perform collaborative filtering. As I am studying for R, rather I'd like to use R.
So, Does anyone know how to ...
0
votes
2answers
72 views
R order observations across columns
I have a list of households, and the dates that they moved into a new ZIP Code. A small segment is as follows:
ADD0 <- as.Date(c("2008-07-01", "1998-07-01", "2001-11-01", "1997-08-01"), ...
0
votes
0answers
41 views
SOLVED:R mca: reducing categorical attributes in a test set according to mutlivar correspondance analysis on training one
I have applied MASS:mca() to reduce categorical variables in a training set. I understand the mca$fs express my data in the new base, while the mca$cs produce the matrix that will allow to rotate the ...
1
vote
0answers
118 views
Rattle R package: difference between risk and weight variable role?
What is the difference between the risk and weight attribute role in the Rattle R data mining package?
2
votes
0answers
439 views
R: Using the bigmemory library for classification with randomForest
has anyone been able to set up a classification (not a regressions) using randomForest AND the bigmemory library. I am aware that the 'formula approach" cannot be used and we have to resort to the ...
0
votes
1answer
175 views
Classifcation/Decision Trees and Choosing Splits
This is a very basic example. But I am doing some data analysis and am continually finding myself writing very similar SQL count queries like so to generate probability tables.
My tables are defined ...
0
votes
1answer
355 views
How to fit linear model after principal component analysis
I've done a princomp analysis on four columns of my dataframe, and found that the first component is overwhelmingly more important than the other three.
Now I want to fit a linear model using the ...
2
votes
0answers
2k views
R error: `contrasts<-`(`*tmp*`, value = contr.funs[1 + isOF[nn]]) [closed]
I got R error about "contrast" in 2 situation:
first I tried to use caret package to do the variable selection. I applied this:
x<- mydata[,-1]
y <- factor(CLICK_FLG)
ctrl<- ...
0
votes
1answer
156 views
Missing data and Attributes selection
My data is 1,785,000 records with 271 features. I'm trying to reduce number of features used to build the model.
Q1. while exploring the data I found that some features are almost all missing data, ...
4
votes
2answers
149 views
Displaying only labels that are being used?
I am using the following to plot the graph given below:
data <- structure(list(Type1 = c("DB", "DB", "DB", "DB", "DB", "DB",
"DB", "DB", "DB", "DB", "DB", "DB", "DB", "Manual", "Manual",
...
3
votes
2answers
502 views
Finding 2 & 3 word Phrases Using R TM Package
I am trying to find a code that actually works to find the most frequently used two and three word phrases in R text mining package (maybe there is another package for it that I do not know). I have ...
-1
votes
3answers
345 views
How to create vector matrix of movie ratings using R project?
Suppose I am using this data set of movie ratings: http://www.grouplens.org/node/73
It contains ratings in a file formatted as
userID::movieID::rating::timestamp
Given this, I want to construct a ...
1
vote
1answer
264 views
R dividing texts in tm package - recognizing speakers
I am trying to identify the most frequently used words in the congress speeches, and have to separate them by the congressperson. I am just starting to learn about R and the tm package. I have a code ...
3
votes
1answer
179 views
Update dataframe column efficiently using some hashmap method in R
I am new to R and can't figure out what I might be doing wrong in the code below and how I could speed it up.
I have a dataset and would like to add a column containing average value calculated from ...
0
votes
2answers
263 views
create aggregate column based on variables with R
I apologize in advanced if this is somewhat of a noob question but I looked in the forum
and couldn't find a way to search what I am trying to do.
I have a training set and I am trying to find a way ...
1
vote
1answer
305 views
Reading in high dimensional data into R without use of data frame
I have very sparse high dimensional (40k observations, 20k dimensions) text data in ARFF format generated by
WEKA.
There are 2 ARFF readers available in R via RWeka and foreign packages. Problem ...
3
votes
3answers
143 views
R packages to look for misentered data
I'm dealing with a data set that has some obvious errors in the data (ie kid that's < 1yr old with a $50,000 credit card balance). I can't go thru line by line as set is >100k lines. Is there any ...
3
votes
1answer
160 views
Can I perform Generalized Iterative Scaling in R?
I'm looking to port our homegrown platform of various machine learning algorithms from C# to a more robust data mining platform such as R. While it's obvious R is great at many types of data mining ...
3
votes
2answers
121 views
Summary of data from a data frame
I have another question concerning data mining from a large data frame that Im working with, the first few lines are as follows:
Assay Genotype Sample Result
1 001 G 1 ...
3
votes
1answer
110 views
Assigning function contents to a variable for text processing
I would like to assign a function's contents as text to a variable, so that I can look for various patterns in it. (Actually, I'd like to assign every function's contents to look for how often each ...