active questions tagged data-mining - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T22:59:15Zhttp://stackoverflow.com/feeds/tag/data-mininghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903648/find-hex-patterns-and-number-of-occurrences1Find HEX patterns and number of occurrencesCy2009-12-14T21:32:01Z2009-12-14T21:45:07Z
<p>Hi,</p>
<p>I'd like to find patterns and sort them by number of occurrences on an HEX file I have.</p>
<p>I am not looking for some specific pattern, just to make some statistics of the occurrences happening there and sort them.</p>
<pre><code>DB0DDAEEDAF7DAF5DB1FDB1DDB20DB1BDAFCDAFBDB1FDB18DB23DB06DB21DB15DB25DB1DDB2EDB36DB43DB59DB32DB28DB2ADB46DB6FDB32DB44DB40DB50DB87DBB0DBA1DBABDBA0DB9ADBA6DBACDBA0DB96DB95DBB7DBCFDBCBDBD6DB9CDBB5DB9DDB9FDBA3DB88DB89DB93DBA5DB9CDBC1DBC1DBC6DBC3DBC9DBB3DBB8DBB6DBC8DBA8DBB6DBA2DB98DBA9DBB9DBDBDBD5DBD9DBC3DB9BDBA2DB84DB83DB7DDB6BDB58DB4EDB42DB16DB0DDB01DB02DAFCDAE9DAE5DAD9DAE2DAB7DA9BDAA6DA9EDAAADAC9DACADAC4DA92DA90DA84DA89DA93DAA9DA8CDA7FDA62DA53DA6EDA
</code></pre>
<p>That's an excerpt of the HEX file, and as an example I'd like to get:</p>
<p>XX occurrences of BDBDBD</p>
<p>XX occurrences of B93D</p>
<p>Is there a way to mine the file to generate that output?</p>
http://stackoverflow.com/questions/1797363/how-do-you-detect-outliers-on-multivariate-data0How do you detect outliers on multivariate data?unknown (yahoo)2009-11-25T14:42:53Z2009-12-05T13:05:24Z
<p>I am trying to do a regression problem but I have 3 independent variables and not 1 so it is hard to detect outliers from a scatter graph. Any suggestions?</p>
http://stackoverflow.com/questions/1218782/data-mining-statistics-collective-intelligence-and-ai-algorithms-books-and-prog0Data Mining, Statistics, Collective Intelligence and AI Algorithms Books and Programming ResourcesNgu Soon Hui2009-08-02T12:07:46Z2009-12-03T06:26:13Z
<p>In my effort to continuously improve myself, I decided to learn about Data Mining, Statistics, Collective Intelligence and AI Algorithms, and well, that sort of stuff. </p>
<p>What are the <strong>free</strong> ebooks, and web resources ( tutorials, code) etc that I can use on?</p>
http://stackoverflow.com/questions/1195368/open-source-data-mining-software1Open Source Data Mining SoftwareJohn2009-07-28T16:54:37Z2009-12-03T03:15:29Z
<p>Hey everyone!</p>
<p>I was wondering; what is the best open source software that I can use for non-binary association rule generations. I need a non-binary implementation because converting my currently non-binary data to binary data would not give the desired results. </p>
<p>Thanks and can't wait to here your comments!</p>
http://stackoverflow.com/questions/419524/what-data-mining-application-to-use1What data mining application to use?mkal2009-01-07T08:03:30Z2009-12-03T02:46:33Z
<p>The last I used was <a href="http://www.cs.waikato.ac.nz/ml/weka/" rel="nofollow">weka</a>
. The last I heard java was coming up with an API (JDM) for it. Can anyone share their experiences with the tools. I am mostly interested in using the tools for classification/clustering (weka does a decent job here) and the tool should have good API support. </p>
http://stackoverflow.com/questions/1813913/information-mining-classification-modification0Information mining, classification, modification KItis2009-11-28T22:03:28Z2009-11-28T22:49:53Z
<p>Any examples, tips, guidance for the following scenario?</p>
<p>I have retrieved updates from several different news websites. I then analyse that information to predict on current trend in the world.</p>
<p>I could only find the information on data mining when searching for above idea, but it is for database systems. While data mining is similar to what i am trying to do, data mining in databases information is more specific than what I have retrieved from websites. So could someone guide me on this aspect? I really appreciate any help you can give on this. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1806827/question-about-using-weka-the-maching-learning-tool0Question About Using Weka, the maching learning toolSaobi2009-11-27T04:58:47Z2009-11-27T11:29:21Z
<p>I'm using the explorer feature of Weka for classification.</p>
<p>So I have my .arff file, with 2 features of NUMERIC value, and my class is a binary 0 or 1 (eg {0,1}).</p>
<p>Sample:</p>
<pre><code>@RELATION summary
@ATTRIBUTE feature1 NUMERIC
@ATTRIBUTE feature2 NUMERIC
@ATTRIBUTE class {1,0}
@DATA
23,11,0
20,100,1
2,36,0
98,8,1
.....
</code></pre>
<p>I load this .arff file, use 10-fold cross validation (no test file), and choose NaiveBayes, then I classify the data, and it gives me: 5 incorrectly labeled, 100 correctly labeled. So far so good.</p>
<p>Now, I significantly change my .arff file (give completely random values for my feature attributes). And repeat the above, and I get the EXACT same statistics when classifying.</p>
<p>I tried this with more changes to my .arff file, different classification algorithms. Still, EXACT same statistic (within the same algorithm) no matter what values I give to my .arff file.</p>
<p>Am I doing something wrong here?</p>
http://stackoverflow.com/questions/1800531/grouping-to-extract-common-values-in-semi-structured-data1Grouping to extract common values in semi-structured datapedalpete2009-11-25T22:58:25Z2009-11-26T01:07:30Z
<p>I've got a 'somewhat' ugly field in a database which holds the names of locations. For instance, Madison Square Gardens which has also been entered as "The Madison Square Gardens", etc. etc. </p>
<p>I'm trying to extract the data so that I can get an accurate list of all the locations.
In order to accomplish this, what I've done is created a sql query where I join the events for each location, and then group by the location name and only use location groups having more than 10 entries (that filters out the somewhat non-reliable entries), but I still end up with Some very different spellings and entries, resulting in duplicate properties/locations. </p>
<p>My SQL query looks like this</p>
<pre>
"SELECT location, COUNT(*) FROM locations
JOIN event ON locations.lid=events.lid
WHERE `long`
BETWEEN - 74.419382608696
AND - 73.549817391304
AND lat
BETWEEN 40.314017391304
AND 41.183582608696
GROUP BY location
HAVING COUNT(*)>10
</pre>
<p>Running this query provides 3 different entries "Madison Square Garden", "Madison Square Gardens", "The Madison Square Garden". Of course, this is only for the Madison Square Garden entry. Most entries have multiple slightly different spellings. </p>
<p>I restrict my searches by lat/long so I don't get locations with the same name in different cities grouped together. </p>
<p>Is there a way with Regular expressions or something in the GROUP clause to have these grouped consistently? Even just removing the trailing 's', and 'the' before the grouping would probably be a big benefit. </p>
<p>I was going to take each result and then do a regular expression match against all the locations in within the lat/long range?</p>
<p>Fortunately I have enough linked events to locations, that I am somewhat able to recognize the major locations.</p>
<p>Any other suggestions for extracting locations from semi-structured data?
The data is scrapped from a variety of sources, so I don't have control over the input. </p>
http://stackoverflow.com/questions/1127120/how-do-i-data-mine-various-news-sources0How do I data mine various news sources?David Brown2009-07-14T18:27:18Z2009-11-25T15:00:04Z
<p>I'm working on a free web application that will analyze top news stories throughout the day and provide stats. Most news websites offer RSS feeds, which works fine for knowing which stories to retrieve. However, the problems arise when attempting to get the full news story from the news website itself. At the moment, I have separate <strong>NewsSource</strong> classes for each source (CNN, NY Times, etc) that read the appropriate RSS feed(s), follows each link, and strips out the body. This seems tedious and very unmanageable when a news website decides to change the HTML structure of their articles.</p>
<p>Is there a service (preferably free) that already aggregates multiple news sources with the <strong>full</strong> article content (not just a summary)? If not, do you have any suggestions for handling multiple sources with different HTML structures that may change without notice?</p>
http://stackoverflow.com/questions/1778935/difference-between-input-attribute-and-predictable-attribute0Difference between input attribute and predictable attributekewl2009-11-22T14:58:23Z2009-11-22T15:27:04Z
<p>Could anyone please clarify the difference between input attribute and predictable attribute for decision tree algorithm in Data mining.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1746501/can-someone-give-an-example-of-cosine-similarity-in-very-simple-graphical-way2Can someone give an example of cosine similarity, in very simple, graphical way?alex2009-11-17T04:03:34Z2009-11-17T16:47:06Z
<p><a href="http://en.wikipedia.org/wiki/Cosine%5Fsimilarity" rel="nofollow">http://en.wikipedia.org/wiki/Cosine%5Fsimilarity</a></p>
<p>Can you show the vectors here (in a list or something)
And then do the math, and let us see how it works?</p>
<p>I'm a beginner.</p>
http://stackoverflow.com/questions/1662625/set-of-books-about-natural-language-processing-semantic-analysis-and-data-mining0Set of books about Natural Language processing, Semantic Analysis and Data Mining.blueomega2009-11-02T17:36:25Z2009-11-11T13:39:37Z
<p>So i´m starting to write my thesis of my master, next semester (should be done before june), i already have the theme, and i need to write the state of art till february.</p>
<p>The main areas are Intelligent systems, Natural Language processing, Semantic Analysis and Data Mining.</p>
<p>I am researching for the best books about Natural Language processing, Semantic Analysis and Data Mining. </p>
<p>I would also like to get some good book about oracle databases, to put me up to speed, since the company requires the use of it.</p>
<p>Wich books should i pick? I have already some knowledge in nlp and semantic analysis and a fairly decent level of math</p>
<p>blueomega</p>
http://stackoverflow.com/questions/1676902/categorizing-friends-in-social-networks3categorizing friends in social networksAsaf David2009-11-04T21:50:41Z2009-11-05T05:22:18Z
<p>I'm facing tho following problem:<br>
let's say <b>u</b> is a social network user and as such has a list of friends, <b>F(u)</b>. a <i>partition</i> is a function <b>F->G</b>, where <b>G</b> is a set of groups such as High-school, university, work, etc'.<br>
I need to come up with algorithm to partite <b>F</b>:</p>
<ul>
<li>the input is <b>F</b> and also <b>F(f)</b> for every <b>f</b> in <b>F</b> (the list of friends for each of <b>u</b>'s friends). </li>
<li>during it's run the algorithm is allowed to ask <b>u</b> questions (for example "what is the best group for some specific user <b>v</b>?").</li>
<li>The amount of question should be kept to minimum (what is minimum is not really a clear number, but I would say 5% of the number of friends seem about right). </li>
</ul>
<p>obviously the resulting partition would not be optimal, but it should be acceptable as a starting point for later refinements.</p>
<p>any thoughts would be greatly appreciated</p>
<p><strong>edit</strong>: no it's not homework. i believe homework would have clearer defined requirements and target function. anyway no, this is actually real world problem i'm facing. </p>
<p>also i may have simplified it a bit, but in reality a user could be part of many groups (so it's more like <strong>F->P(G)</strong>, where <strong>P(G)</strong> is the power group if <strong>G</strong>), so a better algorithm would be able to do that. </p>
http://stackoverflow.com/questions/1658131/algorithms-to-evaluate-user-responses5algorithms to evaluate user responsesRalph2009-11-01T19:46:47Z2009-11-01T21:28:20Z
<p>I'm working on a web application which will be used for classifying photos of automobiles. The users will be presented with photos of various vehicles, and will be asked to answer a series of questions about what they see. The results will be recorded to a database, averaged, and displayed.</p>
<p>I'm looking for algorithms to help me identify users which frequently don't vote with the group, indicating that they're probably either not paying attention to the photos, or that they're lying about what they see. I then want to exclude these users, and recalculate the results, such that I can say, with a known amount of confidence, that this particular photo shows a vehicle that is this and that.</p>
<p>This question goes out to all you computer science guys, where to find such algorithms or to give myself the theoretical background to design such algorithms. I'm assuming I'm going to have to learn some probability and statics, maybe some data mining. Some book recommendations would be great. Thanks!</p>
<p>P.S. These are multiple choice questions.</p>
<p>All of these are good suggestions. Thank you! I wish there was a way on stack overflow to select multiple correct answers so more of you could be acknowledged for your contributions!!</p>
http://stackoverflow.com/questions/1575066/how-do-i-data-mine-text1How do I data mine text?Jeremy Rudd2009-10-15T21:04:33Z2009-10-31T17:02:57Z
<p>Here's the problem. I have a bunch of large text files with paragraphs and paragraphs of written matter. Each para contains references to a few people (names), and documents a few topics (places, objects).</p>
<p>How do I data mine this pile to assemble some categorised library? ... in general, 2 things.</p>
<ol>
<li><p>I don't know what I'm looking for, <a href="http://stackoverflow.com/questions/1575246/how-do-i-extract-keywords-used-in-text">so I need a program</a> to get the most used words/multiple words ("Jacob Smith" or "bluewater inn" or "arrow").</p></li>
<li><p>Then knowing the keywords, I need a program to help me search for related paras, then sort and refine results (manually by hand).</p></li>
</ol>
http://stackoverflow.com/questions/1635014/besides-nltk-what-is-the-best-information-retrieval-library-for-python0Besides NLTK, what is the best information retrieval library for Python?alex2009-10-28T03:13:53Z2009-10-31T17:00:20Z
<p>For use to analyze documents on the Internet!</p>
http://stackoverflow.com/questions/1575246/how-do-i-extract-keywords-used-in-text1How do I extract keywords used in text?Jeremy Rudd2009-10-15T21:37:51Z2009-10-21T01:01:27Z
<p>How do I data mine a pile of text to get keywords by usage? ("Jacob Smith" or "fence")</p>
<p>And is there a software to do this already? even semi-automatically, and if it can filter out simple words like "the", "and", "or", then I could get to the topics quicker.</p>
http://stackoverflow.com/questions/1587020/how-to-get-the-similar-texts-from-a-lot-of-pages1how to get the similar texts from a lot of pages?bruce dou2009-10-19T04:51:29Z2009-10-20T05:58:13Z
<p>get the x most similar texts from a lot of texts to one text.</p>
<p>maybe change the <em>page</em> to <em>text</em> is better.</p>
<p>You should not compare the text to every text, because its too slow.</p>
http://stackoverflow.com/questions/1577349/lexical-analysis-libraries0Lexical Analysis librariesmnml2009-10-16T10:39:06Z2009-10-17T01:13:25Z
<p>I would like to make a piece of software able to regognize whether a sentence is positive or negative. </p>
<p>Is there any Lexical Analysis libraries arround?</p>
<p>I don't really know where I should start.</p>
http://stackoverflow.com/questions/759363/best-open-source-library-or-application-to-crawl-and-data-mine-web-sites2Best open source library or application to crawl and data mine web sitesgyurisc2009-04-17T07:26:03Z2009-10-15T22:16:37Z
<p>I would like to know what is the best eopen-source library for crawling and analyzing websites. One example would be a crawler property agencies, where I would like to grab information from a number of sites and aggregate them into my own site. For this I need to crawl the sites and extract the property ads. </p>
http://stackoverflow.com/questions/1321276/best-database-engine-for-huge-datasets2Best database engine for huge datasetsMark2009-08-24T09:12:24Z2009-10-15T22:05:03Z
<p>I do datamining and my work involves loading and unloading +1GB database dump files into MySQL. I am wondering is there any other free database engine that works better than MySQL on huge databases? is PostgreSQL better in terms of performance? </p>
<p>I only use basic SQL commands so speed is the only factor for me to choose a database</p>
http://stackoverflow.com/questions/1338915/delicious-bookmarks-urls-frequently-bookmarked2delicious bookmarks - urls frequently bookmarkedsaliem2009-08-27T04:55:16Z2009-10-04T20:17:52Z
<p>I haven't found any pre-made scripts that would help me analyze my delicious bookmarks. I want to know if there are any websites that I tend to frequently bookmark. I know I can export my bookmarks and can go from there. Has anyone done this? How have you gone about it?</p>
<p>On a side note - are there any RSS readers that do something similar?</p>
http://stackoverflow.com/questions/1498818/how-can-i-extract-information-from-open-social-based-networks0How can I extract Information from open Social based networks ?prince20192009-09-30T15:20:27Z2009-09-30T19:00:06Z
<p>How can I extract information from opensocial based networks like orkut.</p>
http://stackoverflow.com/questions/391209/techniques-for-building-recommendation-engines6Techniques for building recommendation engines?namin2008-12-24T10:34:20Z2009-09-27T14:00:21Z
<p>The book <a href="http://rads.stackoverflow.com/amzn/click/0596529325" rel="nofollow">Programming Collective Intelligence</a> presents a technique for computing similar links/users based on the distance between the links/users in a huge metric space (user x bookmarked this link / link x was bookmarked by this user).</p>
<p>What other techniques have been developed for recommendation engines?</p>
http://stackoverflow.com/questions/1407957/netflix-prize-dataset1Netflix prize dataset?unknown (google)2009-09-10T21:59:07Z2009-09-22T06:52:06Z
<p>Hi,
I am looking to work on a machine learning project for my course and I would like to use the netflix prize dataset? But it looks like the contest is closed and the dataset is not available for download in the netflix website. Does anyone who wokred on it has the dataset? If so ,can u share it?</p>
http://stackoverflow.com/questions/1368475/microsoft-business-intelligence-is-what-i-am-trying-to-do-possible2Microsoft Business Intelligence. Is what I am trying to do possible?Nai2009-09-02T15:40:56Z2009-09-17T21:35:26Z
<p>Hi guys,</p>
<p>I have been charged with the task of analysing the log table of my company's website. This table contains a user's click path throughout the website for a given session. My company is looking to understand/spot trends based on the 'click paths' of our users. In doing so, identify groups of users that take on a certain 'click path' based on age/geography and so on. </p>
<p>As you can tell from the title, I am completely new to BI and its capabilities so I was wondering:</p>
<ol>
<li>Are our objectives attainable?</li>
<li>How should I go about doing this? </li>
</ol>
<p>I am currently reading books online as well as other e-books I have found. All signs seem to suggest this is possible via sequence clustering. Although the exact implementation and tweaks involved are currently lost on me. Therefore, if anyone has first hand experience in such an undertaking, I would be awesome if you could share it here. </p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1395711/recommended-data-mining-books-for-a-developer-not-mathematician2Recommended data mining books for a developer (not mathematician)?Nicolas Dorier2009-09-08T18:58:07Z2009-09-15T16:26:01Z
<p>I'm a developer, not too good at math, but I'm willing to learn fun stuff to do with <a href="http://en.wikipedia.org/wiki/Data%5Fmining" rel="nofollow">data mining</a> techniques.</p>
<p>I've looked at pragmatic books on the subject which gives me some ideas (and maybe introduces me rapidly some tools). I insist on the fact that I'm not a mathematician!</p>
<p>What do you advise?</p>
http://stackoverflow.com/questions/1426383/what-techniques-tools-are-there-for-discovering-common-phrases-in-chunks-of-text1What techniques/tools are there for discovering common phrases in chunks of text?JohannesH2009-09-15T10:42:17Z2009-09-15T11:04:14Z
<p>Lets say I have 100000 email bodies and 2000 of them contains an abitrary common string like "the quick brown fox jumps over the lazy dog" or "lorem ipsum dolor sit amet". What techniques could/should I use to "mine" these phrases? I'm not interested in mining single words or short phrases. Also I need to filter out phrases that I already know occur in all mails.</p>
<p>Example:</p>
<pre><code>string mailbody1 = "Welcome to the world of tomorrow! This is the first mail body. Lorem ipsum dolor sit AMET. Have a nice day dude. Cya!";
string mailbody2 = "Welcome to the world of yesterday! Lorem ipsum dolor sit amet Please note this is the body of the second mail. Have a nice day.";
string mailbody3 = "A completely different body.";
string[] mailbodies = new[] {mailbody1, mailbody2, mailbody3};
string[] ignoredPhrases = new[] {"Welcome to the world of"};
string[] results = DiscoverPhrases(mailbodies, ignoredPhrases);
</code></pre>
<p>In this example I want the DiscoverPhrases function to return "lorem ipsum dolor sit amet" and "have a nice day". It's not that important if the function also returns shorter "noise" phrases, but if its possible it would be nice to eliminate these in the process.</p>
<p>Edit: I forgot to include mailbody3 in the example.</p>
http://stackoverflow.com/questions/906363/data-mining-logs-to-locate-a-bug2Data mining logs to locate a buggooli2009-05-25T11:21:27Z2009-09-10T03:49:53Z
<p>I'm working on a data distribution application which receives data from a source and distributes that data to multiple target application. After successfully distributing several messages each second for 8 days, it missed a single message and did not deliver it properly to the clients.</p>
<p>As I was looking at the logs I tried to find something there that was special for the time the miss happend - either in the data, its rate or some other condition but couldn't find anything.</p>
<p>Is there any data mining technique I can use to identify how that specific event differs from other events?</p>
http://stackoverflow.com/questions/1351584/feasibility-on-data-mining-program-call-stack-using-aop0feasibility on data mining program call stack using AOPJames Black2009-08-29T14:33:32Z2009-09-09T20:43:18Z
<p>I am reading an article in IEEE Computer magazine about using data mining on applications. </p>
<p>The part that is intriguing to me is the idea that we can have software that can monitor the execution flow of an program, and put the data into a database, where we can do some data mining.</p>
<p>This data could then be used by a data mining tool to look for information, such as if there is certain patterns that may be called that may lead to changing the API, and, ideally, it may also be able to determine bugs, in that if you have to call functions in some order, it can help detect that.</p>
<p>There are probably other uses, but this would be a start.</p>
<p>So, would such a tool be useful?</p>
<p>I am thinking that AOP may be the only way to really do this on a dynamic application, as you could then track the flow of every call and save the stack, and perhaps gather some other information, such as parameters.</p>
<p>Unfortunately software engineers don't tend to be experts on data mining, and those that do data mining may not be an expert on writing complex applications.</p>
<p>For me, where this would get interesting is to then start to analyze distributed applications, or those using cloud computing, but that may be very complicated.</p>
<p>Second question, is this type of question that should be a community wiki?</p>