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
0answers
5 views

Detecting intrusion detection true alerts

My question is: Intrusion detection systems result in large log files with a series of alarms. How to identify alerts that indicate a potential attack? what will be your technique to figure this ...
1
vote
2answers
36 views

Dealing with 5,000 attributes

I have a data set which contains 5,000 + attributes The tables looks like below id attr1 attr2, attr3 a 0 1 0 a 1 0 0 a 0 0 0 a 0 0 1 I ...
0
votes
0answers
34 views

Data mining: Looking for gentle tutorial on sequence data mining

By sequence, I mean data in some order, eg. time series, DNA sequence, .. And by data mining I mean discovering patterns (rather than predicting, clustering, ..) I've just read up the Apriori ...
0
votes
0answers
11 views

HTML mining - extract page fragments that contain semantic useful information

I have HTML documents (web pages) that are related to the subject T. Those documents contains areas with some information that are useful for me. I would like to extract those areas (sections). ...
0
votes
0answers
23 views

Real time recommendations with graph databases [closed]

I was browsing through stuff related to item recommendations and I came across a hybrid solution that used Mahout, Hadoop and S4 (Hadoop for precomputed data and S4 for real time data). However I ...
0
votes
2answers
27 views

Incremental MySQL database design where future needs are unknown

I am using MySQL, InnoDB, and running it on Ubuntu 13.04. My general question is: If I don't know how my database is going to evolve or what my needs will eventually be, should I not worry about ...
-1
votes
1answer
61 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 ...
-3
votes
0answers
39 views

Matlab:Index exceeds matrix dimensions [closed]

Can anybody help me with the matlab code? I have totally no idea for matlab language, but i have had to use it to do an assign. It requires us to introduce new features into the spambase.data, which ...
-3
votes
1answer
41 views

Looking for tools/products for data mining [closed]

I work for software company accumulating big data from hospitals and insurance companies, any kind of data: financial, medical, demographic etc. We load the data from different kind of sources into ...
-2
votes
0answers
9 views

Text Data Statistics [closed]

I want to scrape a job site then run a statistical analysis on the data over a number of years to find the top used keywords, top locations, etc based on the number of occurrences/frequency of words ...
-1
votes
0answers
20 views

Use weka On recommender system

Hello EveryInternet Friend,how to use this example on weka. If I have matric data[row, col] , row stand for users, col stand for movies, rate(i,j) stand for user i rate movie j, rate only ...
0
votes
1answer
19 views

Weka Apriori Algorithm

I would like to use Apriori to carry out affinity analysis on transaction data. I have a table with a list of orders and their information. I mainly need to use the OrderID and ProductID attributes ...
-3
votes
0answers
25 views

How to classify a set of user visits into 'sessions'?

I have a set of user visit logs from browser, but there is no session id in it. I hope to find a good method to classify the visit logs into sets, treat the sets as sessions. Hope to find a good ...
-1
votes
0answers
25 views

What are some Ruby Gems that were designed to assist in Data Mining? [closed]

It's looking like I may get my feet wet with a data mining by working with a company where my tasks would consist of very simple data syntax re-structuring (to assist in actual mining, with a tool ...
-6
votes
0answers
35 views

Ironpython Machine Learning and Data Mining Algorithms [closed]

Which machine learning and data mining algorithms are implemented in Ironpython?
0
votes
3answers
37 views

Similarity distance measures

Vectors like this v1 = {0 0 0 1 1 0 0 1 0 1 1} v2 = {0 1 1 1 1 1 0 1 0 1 0} v3 = {0 0 0 0 0 0 0 0 0 0 1} Need to calculate similarity between them. Hamming distance between v1 and v2 is 4 and ...
1
vote
0answers
19 views

iterated conditional mode E step EM

I wanted to know what is the mathematical justification for using ICM as an approximation for the E step in an EM algorithm. As I understand in the E step the idea is to find a distribution that is ...
0
votes
1answer
73 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 ...
1
vote
1answer
28 views

Location mining from text

I'm working on a text mining problem: extract the place from the text. The place could be either only states, or more specific such as name of a neighborhood in Chicago, or even a specific address. ...
0
votes
1answer
58 views

DMQL-Data Mining Query Language

I'm trying to get some references about DMQL but Google keep viewing the same results no matter what I do. So any one have some references about DMQL and it's history and syntax ?
4
votes
2answers
122 views

Predicting sentiment of future tweet on twitter

I'm trying to predict the sentiment of the next tweet posted by a twitter user. Right now I have the following steps (step 1 and 2 are already implemented in python): Learn how to classify a tweet ...
-3
votes
0answers
87 views

How to do simple k-means clustering in java using weka API? [closed]

I am importing weka jar file in net beans. I need an example code for simple k-means clustering on data.
-1
votes
2answers
33 views

Association Rule Mining on Relational DataBase

I am working on a project "Association Rule Mining on Relational Data Base". I have completed my implementation but the problem is I don't have any other tool to compare (check) my results Can any ...
-3
votes
1answer
31 views

what's “long thin community”? [closed]

My work title is "Community structure with long thin communities", but i don't what is it? Abstract: There has been considerable recent interest in community structure in networks, this is the idea ...
0
votes
1answer
23 views

How to measure semantic relationship between two webpages

Let's assume, I am visiting a University webpage. There are many teacher profile there. Though these pages are not syntactically related, these are semantically related. How can I measure this type of ...
1
vote
3answers
53 views

How to determine if a current set of data values represent or relate to previous historic data values?

I am trying to develop an method to identify browsing pattern of a user on the basis of page requests. In a simple example I have created 8 pages and for each page request from the user to the page I ...
0
votes
1answer
58 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
44 views

Parsing Real-Time Changing text by Javascript

I would like to parse a webpage to gather data for scientific use. The text I need to parse is located within a < span >. Parsing the HTML will not achieve this because this text is constantly ...
0
votes
1answer
36 views

How to get nearest neighbors in jgrapht

I'm trying to solve a link prediction problem using jgraphT. I'm calculating similarity between two nodes based on the neighbours of the two nodes. Each node has some properties. The calculation is ...
-3
votes
0answers
27 views

Data Mining/Data Discovery Application [closed]

I am looking for something like the "Pro" version of Wolfram Alpha: Wolfram Alpha will automatically show a bunch of descriptive stats, basic graphs/visualizations, correlations and statistically ...
0
votes
0answers
30 views

How to determine test error for Simon Funk's incremental SVD method

I'm trying to implement this for a ratings dataset that's similar to Netflix, and I've gotten it to "work"; the training error is driven toward 0 after each iteration / more features are added. How ...
-2
votes
0answers
25 views

Could you help me with a Poll. For spanish speakers [closed]

Cordial saludo para tod@s Es para un trabajo de grado relacionado con un proceso KDD, estoy en la etapa de recoleccion de datos y necesito ayuda con los registros. Es para redisenar una interfaz ...
-3
votes
0answers
31 views

Neural network model-results and accuracy [closed]

I created Neural Network model based on existing cube. The cube is fine, but I got strange results from network. Mining model prediction gives me many rows of same results. Also, mining accuracy ...
2
votes
1answer
46 views

The Best Approach for this Data Transformation

I'm simplifying reality for the sake of simplicity... I have a table with millions of Temperature observations: ObservationID, LocationID, Observation_Date, Temperature I want to write a query, but ...
0
votes
1answer
37 views

How to randomly pick a vertex or edge from graph of jGraphT

I have created a Graph with a set of edges I have (4000K Edges and 4K nodes). Now I want to take 10% of the edges from the corpus to create a train and test data set. I want to pick an edge in ...
0
votes
3answers
72 views

Prediction Algorithm for Basketball Stats

I'm working on a project where I need to predict future stats based on past stats of basketball players. I would like to be able to predict next season's statistics based on the statistics of the ...
1
vote
1answer
69 views

How to find similarity for large number of features

I'm not sure if I am asking the question at right place as I'm new to stackoverflow, please move if required. I'm trying to solve a link prediction problem for Flickr Dataset. My dataset has 5K nodes ...
2
votes
3answers
39 views

Diffference between Closed and open Sequential Pattern Mining Algorithms

I want to use some algorithms to mine my log data. I found a pattern mining framework on: http://www.philippe-fournier-viger.com/spmf/index.php?link=algorithms.php I have tried several algorithms, ...
1
vote
2answers
48 views

String comparison of wikipedia articles

i am retrieving Wikipedia categories for a request with http://en.wikipedia.org/w/api.php?format=json&action=query&prop=categories&cllimit=5000&titles=request What i am trying to do ...
-1
votes
0answers
34 views

Similar behavior on high dimensional data set

I have a high-dimensional (with an aspect of sequence) data set and i want to know if my data set contains a similar behavior in some sequences ? do you have any idea ? thanks beforehand.
1
vote
3answers
64 views

Arranging documents in a grid in accordance with the content similarity

How is it possible to arrange documents in to a space (say multiple grids), so that the position in which they are placed in, contains information about how similar they are to other documents. I ...
0
votes
2answers
75 views

Construct huge numpy array with pytables

I generate feature vectors for examples from large amount of data, and I would like to store them incrementally while i am reading the data. The feature vectors are numpy arrays. I do not know the ...
0
votes
0answers
22 views

Using BIC for the validation of cluster Numbers

I am trying to user Bayesian information criterion as mentioned in below wiki page: Bayesian information criterion I am using following formula: From the weka tools I can get "Within cluster ...
1
vote
0answers
25 views

Data Mining prediction Server Operation has been cancelled

I will appriciate the help if anyone has encountered the problem before or has an idea how to resolve it. I am trying to create an data mining with visual studio 2008. And I am almost to the end. ...
0
votes
1answer
53 views

Data Mining Motion Capture Data (.bvh)

Hello and thank you for taking the time to read my question. I am pretty much a newbie to data mining and I am looking for some guidance on a project I am working on. The project I am working on is to ...
1
vote
3answers
60 views

How to find sequence of repetition from a trace file

I Have been given a assignment where i need to instrument a given application and generate a trace file and later on from the trace file a sequence diagram needs to be generated. The application is ...
0
votes
0answers
20 views

data recognition using python [duplicate]

I Have been given a assignment where i need to instrument a given application and generate a trace file and later on from the trace file a sequence diagram needs to be generated. The application is ...
0
votes
0answers
106 views

Data Mining Query Language (DMQL) Editor

I'm totally new to Data Mining Querying Language (DMQL). So far I found a lot of resources of its syntax but I don't know where to write queries. I'm wondering if there is a server that holds data ...
0
votes
1answer
64 views

Weka: Classifier and ReplaceMissingValues

I am relatively new to the data mining area and have been experimenting with Weka. I have a dataset which consists of almost 8000 records related to customers and items they have purchased. 58% of ...
1
vote
5answers
136 views

Finding daily patterns with machine learning

I have created a huge log of daily activity in the format [timestamp, location]. For example [{1365650747255, 'san francisco'}, {1365650743354, 'san francisco'}, {1365650741349, 'san mateo'}, ...

1 2 3 4 5 21