Data mining is the process of analyzing large amounts of data in order to find patterns and commonalities.

learn more… | top users | synonyms (1)

0
votes
1answer
146 views

Extract performance as a macro in rapidminer

I am using rapidminer doing classification , I want to extract performance as a macro and print the performance on output after measuring the performance , Is there any way to do that ?
-1
votes
1answer
149 views

Euclidean distance definition [closed]

I have a question about it. I've seen two different definitions of the Euclidean Distance. The first one is from Wikipedia (http://en.wikipedia.org/wiki/Euclidean_distance): ...
-1
votes
2answers
311 views

Dataset for data mining project [closed]

I am searching for some datasets in form of 0 and 1 . i cant find dataset. i have find some 10 to 12 records but want at least 100 records and 8 different records. This is one i have searched this ...
2
votes
2answers
497 views

Frequent Itemsets & Association Rules - Apriori Algorithm

I'm trying to understand the fundamentals of the Apriori (Basket) Algorithm for use in data mining, It's best I explain the complication i'm having with an example: Here is a transactional dataset: ...
0
votes
1answer
114 views

Decision Tree - Sparse dataset

I have very sparse dataset with huge number of attributes (~12 K features and 700K records) I can not fit it in memory (attribute values are binomial i.e. True/False) , As it is sparse I keep the ...
1
vote
1answer
86 views

How to make weka treat empty strings as 0

I'm using weka for clustering binary data. Note that I use weka directly through the API or the source code. My data input is a huge .csv file for example attrib1, attrib2, atrib3 0,1,0 1,0,1 0,0,1 ...
0
votes
1answer
96 views

Changing feature value type in RapidMiner

I have a dataset with many attributes (2k) which a few of them (about 10) are not binary and the rest are binary (0,1) , I want to change the value types of these binary attributes from integer to ...
0
votes
1answer
363 views

Optimize Decision Tree Parameters in RapidMiner

I am working with a rather large dataset (770K records , 2K attributes , almost all of these attributes are binomial but in integer form) , I want to apply decision tree on the data with a 10-fold ...
1
vote
1answer
97 views

Add a constant value to a numerical attribute in Rapid Miner

I am working with rapidminer , I have a dataset with a numerical field (attribute) , I want to simply add a constant (e.g. 1) to all values of this feature , How may I do this? I have not found ...
0
votes
1answer
34 views

Any public datasets of authentication logs?

I'm looking for login logs, particularly from a mail server, to use as sample data. I've looked through a lot of public datasets but have been unable to find anything of the sort. I'd like to be able ...
3
votes
2answers
305 views

ELKI implementation of OPTICS clustering algorithm detects only one cluster

I'm having issue with using OPTICS implementation in ELKI environment. I have used the same data for DBSCAN implementation and it worked like a charm. Probably I'm missing something with parameters ...
4
votes
2answers
356 views

Removing outliers from a k-mean cluster

I have number of smaller data sets, containing 10 XY coordinates each. I am using Matlab (R2012a)and k-means to obtain a centroid. In some of the clusters (see figure below) I can see some extreme ...
1
vote
1answer
347 views

How can I use the rule-based learning algorithms for this example

I have data as follows in order to do a predictive learning as to what feature do people find attractive in a model when purchasing clothes online. So I have data as follows. COLORofCLOTHING ...
0
votes
1answer
145 views

Most popular collocations

Could anyone help to find most popular N collocations in set of K files. I've already implemented basic Map Reduce for finding most popular words (word counter). But how can I deal with collocations ...
0
votes
1answer
201 views

Apriori algorithm-difference between A->B and B->A application rule

what is the difference between A->B and B->A application rule.. if transaction database is like this , T1 Bread, Jelly, Butter T2 Bread, Butter T3 Bread, Butter, Milk T4 Beer, Bread T5 Beer, ...
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 ...
0
votes
2answers
64 views

High-dimensional clustering from aggregates of observations

I have fallen into this weird high-dimensional clustering problem. Here is an analogy to explain it. Imagine that 2^10 people enter into a forest, and we want to know how many bird species live ...
-3
votes
1answer
139 views

How to convert a log system file into ARFF format? [closed]

I'm using Weka tool for data mining and classification. I have to convert the log system file to ARFF file. There is a possiblity to convert log system file to ARFF file? Thank you
-1
votes
2answers
80 views

Hibernate 4 Data mining

I am developing a web application where users are allowed to view images. I wanted that site to provide related images depending on the image tags, I have heard that it is useful to use Database ...
1
vote
1answer
98 views

Can SAS Enterprise Miner - Cluster node - take coordinate matrix as input?

I am using SAS proc distance to create a distance matrix. I wanted to know if SAS EM cluster node can use this matrix to create perform K mean clustering?
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 ...
-2
votes
1answer
127 views

Virus/Malware Danger While Web Crawling [closed]

I recently wrote a custom web crawler/spider using Java and the JSoup (http://jsoup.org/) HTML parser. The web crawler is very rudimentary - it uses the Jsoup connect and get methods to get the ...
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
5answers
189 views

How to approach Machine Learning problems with dynamically sized input collection?

I'm approaching a problem trying to classify a data sample as good or bad quality with machine learning. The data sample is stored in a relational database. A sample contains the attributes id, name, ...
0
votes
1answer
59 views

Network Analysis

I have a problem for network. For one document I am extracting some information. I am drawing nice graphs for them. But in a document information flows. I am trying to depict it in graph like the way ...
1
vote
1answer
233 views

Fast and scalable similarity detection

I have large postgresql database, containing documents. Every document represented as a row in the table. When new document added to the database I need to check for duplicates. But I can't just use ...
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
105 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 ...
-5
votes
1answer
46 views

Classify an English word into its superclass

Given a word, how to classify it into its superclass? For example, if the word is: 'Christian', how do I classify it as a 'Religion'. And if the word is 'Barack', how do I classify it as a 'Name' ...
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
269 views

Open source concept mining tools?

Are there to day any concept mining open source tools available? I have only be coming across like Leximancer, which although seem to fit the role is not open source and quite expensive for a ...
0
votes
1answer
51 views

Updating the data-set when classifing new nominal instances

I'm using J48 to classify instances composed of both numeric and nominal values. My problem is that I don't know which nominal-value I'll come across during my program. Therefor I need to update my ...
0
votes
0answers
102 views

Cluto sparse matrix clustering

I downloaded cluto and I want to send a text file includes sparse data as input and want to get the output of clustered data. For example: 4 3 9 1 0.4 2 0.4 1 0.4 2 0.4 2 1.2 3 1.2 1 0.4 ...
0
votes
1answer
605 views

C4.5 and ID3 algorithms with emphasis on practical details

I began to apply data mining algorithms. Now I study decision trees. There a lot of material across the Internet about C4.5 and ID3 algorithms, but I want to know practical details, pros and cons and ...
0
votes
0answers
176 views

Online Clustering and classification in MAHOUT

I have a very simple feature matrix, having a bunch of users with a set of binary items. The goal is to have an unsupervised clustering scheme to cluster the users, then train a classifier, having the ...
3
votes
1answer
144 views

Algorithm to search for similar lists of integers

I have a SQLite database that contains two tables: Objects: object_id int, name varchar(50) Values: key char(12), value int, object_id int As you can see each object contains a list of ...
0
votes
1answer
113 views

Clustering user profiles [closed]

I want to cluster user profiles. A typical user profile will be userId, Country, Province, city, age and some other interests(categorical) In my distance measure, I want to have the largest weights ...
0
votes
1answer
217 views

is twitter storm appropriate for data mining? [closed]

I have a pile of data(about millions rows),I want to do cluster analysis with them,I know Hadoop can do this,but I think the amout of data is just dozens of Mbs,while Hadoop usually process Gb or Tb ...
0
votes
1answer
71 views

Popular Items suggestion - Time Sensitive Data - Data Mining

I am a newbee in the field of data mining. I am working on very interesting Data Minign problem. Data description is as follows: Data is time sensitive. Item attributes are dependent on time factor ...
0
votes
1answer
137 views

Collaborative filtering in Recommendation Algorithms

How do i use collaborative filtering to find a university i want to study in? . I would like to later design a app for this . I have read papers on item based collaborative filtering but still need ...
0
votes
1answer
423 views

can i use the facebook data for my data mining project

First i will tell what i want to achieve in my data mining project and then i will ask questions. I am thinking of using the facebook to find particular user from particular location and from ...
0
votes
3answers
115 views

How to group GPS Cooridnates to represent One specific GPS Location ( Data Mining )

I have a scanario : I have the data of some GPS Tracks( longitutdes, latitudes ) and these are contained in 2 parts First part containing the data ( Longitudes and Latitudes ) which are the journey ...
1
vote
1answer
59 views

assigning new observation to a cluster

Suppose I have a user/item feature matrix in Mahout and I have derived the users' loglikelihood similarity and have identified three user clusters. Now I have a new user with a set of items (same ...
0
votes
1answer
182 views

Cluster binary data

I have a large data set with BINARY user/items feature matrix: I need to cluster both users and items. Is there anyway to do them simultaneously in Mahout? More importantly, if I use loglikelihood ...
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 ...
0
votes
2answers
348 views

How to implement k-means algorithm on string data

I am trying to implement K-means algorithm on the below data-set.It's stragiht-forward to calculate distance between any two numeric attributes but how do I calculate distance between two strings and ...
4
votes
4answers
328 views

Machine Learning Algorithm for Completing Sparse Matrix Data

I've seen some machine learning questions on here so I figured I would post a related question: Suppose I have a dataset where athletes participate at running competitions of 10 km and 20 km with ...
0
votes
1answer
70 views

How to compare similarity between two concept maps

I am doing a CV short listing project for a company. I have a concept map for whole company documents. And also i have extracted the data from CV and now I have a concept map for each CV. I want to ...
0
votes
1answer
54 views

Finding hot topics in twits based on the frequency of the words

I am building a Java web service for finding the hot topics in a special location (latitude , longitude) based on the frequency of the word which is being used in the twits. I am using twitter4j api ...

1 2 3 4 5 22