active questions tagged analysis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T17:21:35Zhttp://stackoverflow.com/feeds/tag/analysishttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861467/analysis-services-real-time-trace-logs0Analysis Services Real Time Trace LogsChilly2009-12-07T17:23:47Z2009-12-07T17:33:06Z
<p>I'm looking to get the trace logs for AS (same stuff as for SQL server) in real time. I can't find any .net interfaces to this stuff. So far the only realistic solution I can think of is to run it permanently and have it dump to a new table which I listen to on updates via triggers.</p>
<p>Does anyone know of a better way of doing this?</p>
<p>This is the data I'm after (all of it): <a href="http://msdn.microsoft.com/en-us/library/ms174901%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms174901%28SQL.90%29.aspx</a></p>
<p>Ta</p>
http://stackoverflow.com/questions/1849303/pre-sorting-analysis-algorithm7Pre-sorting analysis algorithm?Mason Wheeler2009-12-04T19:59:21Z2009-12-06T23:00:29Z
<p>It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the best choice. The question is knowing when to use which.</p>
<p>Is there an algorithm available to run through a data set, apply a comparison factor, and return a report on how close the data set is to being in sort order? I prefer Delphi/Pascal, but I can read other languages if the example isn't overly complex.</p>
http://stackoverflow.com/questions/356459/web-server-log-analysis-tool3Web Server Log Analysis ToolKmett2008-12-10T15:23:49Z2009-12-02T13:41:09Z
<p>Any suggestions for an accurate Web Log analysis tool to generate reports on the IIS logs? We used WebTrends, but I don't feel it was accurate.</p>
http://stackoverflow.com/questions/124171/comparison-of-python-and-perl-solutions-to-wide-finder-challenge6Comparison of Python and Perl solutions to Wide Finder challengeConstantin2008-09-23T21:57:11Z2009-12-02T07:12:44Z
<p>I'd be very grateful if you could compare the winning <a href="http://www.cs.ucsd.edu/~sorourke/wf.pl" rel="nofollow">O’Rourke's Perl solution</a> to <a href="http://effbot.org/zone/wide-finder.htm" rel="nofollow">Lundh's Python solution</a>, as I don't know Perl good enough to understand what's going on there. More specifically I'd like to know what gave Perl version 3x advantage: algorithmic superiority, quality of C extensions, other factors?</p>
<p><a href="http://www.tbray.org/ongoing/When/200x/2007/10/30/WF-Results" rel="nofollow">Wide Finder: Results</a></p>
http://stackoverflow.com/questions/1816868/worst-case-time-complexity0Worst case time complexitygigapr2009-11-29T21:43:14Z2009-11-29T22:53:14Z
<p>Hi,</p>
<p>i have an algorithm that searches into a directory and search for all the text files in that directory and any sub-directory. Assuming i do not know how many sub-directories and sub-sub directories there are in the parent directory. how do i calculate the complexity?</p>
<p>this is the code i am using</p>
<pre><code> public List<string> GetFilesInDirectory(string directoryPath)
{
// Store results in the file results list.
List<string> files = new List<string>();
// Store a stack of our directories.
Stack<string> stack = new Stack<string>();
// Add initial directory.
stack.Push(Server.MapPath(directoryPath));
// Continue while there are directories to process
while (stack.Count > 0)
{
// Get top directory
string dir = stack.Pop();
try
{
// Add all files at this directory to the result List.
files.AddRange(Directory.GetFiles(dir, "*.txt"));
// Add all directories at this directory.
foreach (string dn in Directory.GetDirectories(dir))
{
stack.Push(dn);
}
}
catch(Exception ex)
{
}
}
return files;
}
</code></pre>
<p>thanks</p>
http://stackoverflow.com/questions/1260234/download-and-extract-information-from-emails-in-gmail1Download and extract information from emails in gmailzecougar2009-08-11T13:08:29Z2009-11-28T20:00:02Z
<p>I want to download mails from all items and do some analysis on the mails. this will probably involve 2 distinct components.</p>
<ol>
<li>download the mails using IMAP </li>
<li>parse unstructured data in the emails to extract information from them. no - its no the usual extract email adresses from the mails. probably quite a bit more complex than that.</li>
</ol>
<p>i imagine a step involved would be converting it from MIME format to pure text. the parsing can probably be done after dumping all the emails into a database, but i dont want to lose any formatting or attachments present in the mail.</p>
<p>i would prefer to do it in .net, but am open to the best language tools available for the kind of work involved. have heard that perl is probably the best option for this kind of analysis. </p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1807858/frequency-analysis-algorithm0frequency analysis algorithmNoor2009-11-27T10:11:44Z2009-11-28T01:38:40Z
<p>Hello everyone.</p>
<p>I want to write a java program that searches through a cipher text and returns a frequency count of the characters in the cipher, for example the cipher:
"jshddllpkeldldwgbdpked" will have a result like this:</p>
<p>2 letter occurrences:</p>
<p>pk = 2, ke = 2, ld = 2</p>
<p>3 letter occurrences:</p>
<p>pke = 2.</p>
<p>Any algorithm that allows me to do this as efficiently as possible?</p>
http://stackoverflow.com/questions/1672192/static-analysis-of-net-assembly0Static analysis of .net assemblySaar2009-11-04T07:28:00Z2009-11-27T15:00:03Z
<p>I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly.</p>
<p>In addition, for each private method which is called from a public method, I need to know which public method it is. Then I will detemine if that method is really called from a client of the class and if not I will be able to remove it.</p>
<p>In the past I used a code from Lutz Rorder which is the base of Reflector - it had an option to analyze IL code and gave object model on top of it. I cannot find this code now.</p>
<p>Any suggestion?
Maybe a point to that Lutz Rorder code?</p>
<p>Saar</p>
http://stackoverflow.com/questions/1807697/some-questions-about-function-point0Some questions about Function pointAkial2009-11-27T09:37:13Z2009-11-27T09:37:13Z
<p>Hi,</p>
<p>I try to learn how to use Function Point analysis, however, there are questions that i can't answer. Hopefully, stackoverflow and you guys out there can help me answer those questions.</p>
<ol>
<li><p>According to the IFPUG manual, the menu is not counted. However, if we can perform some functions, which do not invoke a dialog, via the menu, then we will have to implement those features. Since the menu is not counted, how can we make our estimation? </p></li>
<li><p>Iseems to me that an ILF with a small set of functions has the same FP value as that ILF with a bigger set of functions. Is it correct? Or is it just my misunderstanding?</p></li>
<li><p>In some forms or dialogs, there are buttons which can open up another dialog or form, and I'm confused on how to count those dialogs. Can someone explain to me how to count them using FP, especially the "Excel2003\Insert\Pictures\AutoShapes" dialog and the "Excel2003\Format\Conditional Formatting" dialog?</p></li>
<li><p>Some objects, like a shape for example, may provide some mouse functions such as moving, resizing etc...I try to apply the FPA on them, but I don't know which category they belong to, or how to count them. Can someone tell me how i can apply FPA here?</p></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1802118/doing-static-analysis-profiling-etc-with-vsts-2008-dev-edn0Doing Static Analysis, Profiling etc. with VSTS 2008 Dev. Edn.unknown (google)2009-11-26T07:40:04Z2009-11-26T07:40:04Z
<p>Hi,</p>
<p>We are using ‘Visual Studio Team System 2008 – Development Edition’ IDE to build ASP.NET applications. </p>
<p>Now we planned to carry-out the following activities using this IDE and I am new to using these activities.</p>
<ul>
<li>Static Analysis
<ul>
<li>Code Metrics</li>
<li>Profiling</li>
<li>Code Coverage</li>
</ul></li>
</ul>
<p>Would you please let me know if there are any good reference links /docs that would guide me to do these tasks.</p>
<p>Many thanks.</p>
<p>Regards,
Reshma.</p>
http://stackoverflow.com/questions/1798457/iphone-analysis-design-creating-work-flow0iphone Analysis & design - creating work flow [closed]sagar2009-11-25T17:14:16Z2009-11-25T23:31:14Z
<p>At the beginning of each project, first of all we create sample screen design by using software or by designing on notepad. </p>
<p>By doing this we can have idea, what we are going to implement.</p>
<p>Lets say,</p>
<ol>
<li>First screen - Splash screen - will look like this demo image</li>
<li>Second screen - Dashboard screen - will look like this demo image.</li>
<li>Third screen - Sign up screen - will have this kind of fields, here will be picker etc.</li>
</ol>
<p>( I need free Mock up tool - ( i think mock up means black & white just sketch) )</p>
<p>What kind of tools do you use for designing a system flow for iphone? </p>
http://stackoverflow.com/questions/179969/test-reporting7Test Reporting driscadam2008-10-07T19:30:45Z2009-11-25T14:03:55Z
<p>We are migrating our test report data (unit, regression, integration, etc..) from an XML format to a database format for better analysis. Right now the majority of our test analysis is done using the CruiseControl.NET dashboard, but this is limited to primarily the most recent test data. Older test data can be accessed but not easily compared to new test data. We want to pin point problem components and better narrow down bugs. With the onset of tons of information brought on by our newly implemented regression and integration testing I would like to see some better metrics generated (possibly performance and the like). Have you worked with any business intelligence systems that will provide a framework for accurately and easily implementing some sort of analysis and reporting? </p>
<p>I have looked into JasperReports and Pentaho but I'm struggling with implemetation of Pentaho at the moment. Should I continue my fight with the system? Is this what I'm looking for? </p>
http://stackoverflow.com/questions/1794232/big-tables-and-analysis-in-mysql1Big tables and analysis in MySqlmischa2009-11-25T02:09:18Z2009-11-25T02:47:14Z
<p>For my startup, I track everything myself rather than rely on google analytics. This is nice because I can actually have ips and user ids and everything.</p>
<p>This worked well until my tracking table rose about 2 million rows. The table is called <code>acts</code>, and records:</p>
<ul>
<li>ip</li>
<li>url</li>
<li>note</li>
<li>account_id </li>
</ul>
<p>...where available.</p>
<p>Now, trying to do something like this:</p>
<pre><code>SELECT COUNT(distinct ip)
FROM acts
JOIN users ON(users.ip = acts.ip)
WHERE acts.url LIKE '%some_marketing_page%';
</code></pre>
<p>Basically never finishes. I switched to this:</p>
<pre><code>SELECT COUNT(distinct ip)
FROM acts
JOIN users ON(users.ip = acts.ip)
WHERE acts.note = 'some_marketing_page';
</code></pre>
<p>But it is still very slow, despite having an index on note. </p>
<p>I am obviously not pro at mysql. My question is:</p>
<p>How do companies with lots of data track things like funnel conversion rates? Is it possible to do in mysql and I am just missing some knowledge? If not, what books / blogs can I read about how sites do this?</p>
http://stackoverflow.com/questions/1777921/website-session-analysis0Website Session AnalysisPaul Tarjan2009-11-22T05:37:01Z2009-11-22T13:11:32Z
<p>I'd like to know the best way to deep dive into the flow of my users. For example, I have 4 pages in my flow, how can I analyze which users abandon on which step? I can definitely do it by hand with logging, etc, but I'd rather use an off the shelf solution.</p>
<p>I have apache request logs, as well as google analytics. Can these analyze users as sessions?</p>
http://stackoverflow.com/questions/957361/using-show-values-as-option-in-excel-2007-pivot-table-when-source-is-ssas-cube0Using "Show values as" option in Excel 2007 pivot table when source is SSAS cube?Brad2009-06-05T18:28:02Z2009-11-22T09:00:02Z
<p>I have an Excel 2007 pivot table showing "Year" across the top and "Month" down the side. What I am trying to do is represent the values as "% Difference" from the same month of the previous year. (Ex. If Jan-07 is $100,000 and Jan-08 is $120,000, I would like Jan-08 to show '20%'). However, every time I try to do this (using the "Show values as" tab of Value Field Settings) all of my numbers go to '#N/A'. Is there a way to do this using an Analysis Services cube as the data source? When I do this exact same thing using data on a different sheet as the data source for the pivot table, it works fine.</p>
<p>Thanks in advance for any insight into this.</p>
http://stackoverflow.com/questions/834630/analysis-of-filesystem0analysis of filesystemnotpvo2009-05-07T13:25:27Z2009-11-19T02:00:04Z
<p>So, trying to find some utility(ies) to give us statistical information on this thing.</p>
<p>For example, what files were created in the last 30, 60, 90 days, 6 months, etc. What are their sizes?</p>
<p>Something with sortable reports would be nice.</p>
<p>I know we can do some things with a variety of command line switches for ls and using du, but these don’t create quite the reports I’m looking for ... Do you know of any appropriate utilities off of the top?</p>
http://stackoverflow.com/questions/1721195/how-to-implement-crud-operations-in-uml1How to implement CRUD operations in UMLPeter2009-11-12T10:02:55Z2009-11-12T10:25:04Z
<p>I was wondering if any analysts/architects have a solution for the hundreds of <a href="http://nl.wikipedia.org/wiki/CRUD" rel="nofollow">CRUD</a> operations I would have to add to nearly every class in my <a href="http://nl.wikipedia.org/wiki/UML" rel="nofollow">UML</a> diagram. </p>
<p>Do you let each class inherit from a base class that implements the <a href="http://nl.wikipedia.org/wiki/CRUD" rel="nofollow">CRUD</a> operations?</p>
<p>Best practices and design patterns about this are very much appreciated!</p>
http://stackoverflow.com/questions/1712467/minimalistic-visitor-stats-based-on-php0Minimalistic visitor stats based on PHP?Pekka2009-11-11T01:39:27Z2009-11-11T18:29:11Z
<p>Does anybody know a minimalistic, nice-looking visitor statistics suite based on PHP that displays visitor stats in a end-user friendly way.</p>
<p>I know Google Analytics, and the big names in PHP and Perl based traffic analysis; they are all too complicated and feature-rich for what I need. I am looking for something that is already totally simplified and that I don't have to strip down. </p>
<p>Required features:</p>
<ul>
<li>Visitors today, this week, this month</li>
<li>Where visitors came from</li>
<li>A good referer overview </li>
<li>Visitors on this page</li>
<li>Good filtering of bots</li>
</ul>
<p>Optional:</p>
<ul>
<li><p>Can connect to built-in IP locator thingy, I forget the name... Anyway, I have good IP to country resolution based on one of the big providers' functions in the provider's $_SERVER variable</p></li>
<li><p>A nice API and/or source code documentation to extend / interact with would be a plus.</p></li>
</ul>
<p>There is no access to the server logs on the server I want to use this so the suite would have to bring its own tracking facilities, be that a PHP include, an image or a script.</p>
<p>Open Source would be nice, but I would consider paid solutions as well, as long as they're scripts shipped with source. I want no dependencies from external services.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/334653/new-dynamic-tools-analysis-for-c-code1new dynamic tools analysis for C-code smile10102008-12-02T16:48:55Z2009-11-10T06:16:02Z
<p>Could somebody tell me wich new dynamic tools analysis for C-code are there like valdgrind?</p>
http://stackoverflow.com/questions/631586/sql-analysis-services-dimension-attributes-with-a-many-cardinality0SQL Analysis Services - Dimension attributes with a "many" cardinalityMonkeyBrother2009-03-10T18:06:56Z2009-11-10T00:00:01Z
<p>I am creating a cube with the following tables:</p>
<p><strong>Customer</strong>
CustomerID,
Name</p>
<p><strong>Customer Rep</strong>
CustomerID,
RepID</p>
<p><strong>Rep</strong>
RepID,
Name</p>
<p>The important thing here is that there is a many to many relationship between Reps and Customers. I want to be able to ask the question "How much sales for customers working with rep 'A'?" In the data source view i set up the relationships between both customerid columns and both repid columns. I set up the rep attribute in the dimension builder and when I try to build the cube I get this error:</p>
<p><strong>Errors in the high-level relationship engine. the 'Rep' table that is required for a join cannot be reached based on the relationships in the data source view.</strong></p>
http://stackoverflow.com/questions/1651067/analyzing-the-spider-soliaire-game1analyzing The Spider Soliaire game !! [closed]nader2009-10-30T16:56:25Z2009-10-30T17:01:15Z
<p>I have to write a report to discuss the spider solitaire game and I'm really not into games. Where I can find articles and stuff about the spider solitaire game?</p>
<p>I tried google but all I found was the game it self. Can any one help?</p>
http://stackoverflow.com/questions/1638497/openup-like-process-to-analyse-existing-software0OpenUP-like process to analyse existing software?Frank2009-10-28T16:42:41Z2009-10-29T19:23:52Z
<p>In a class I've been taking for grad-school, we've been covering the <a href="http://epf.eclipse.org/wikis/openup/" rel="nofollow">OpenUP</a> process as an approach to design new software. </p>
<p>It occurred to be that often times in software engineering, an older piece of software needs to be modified or simply understood. Is there a process similar to the Unified Process or OpenUP to analyze and model/document an existing system? Let's assume that no UML or OpenUP documentation currently exists; furthermore, assume the project is fairly big.</p>
<p>I know that there are reverse engineering UML tools out there but these are passive tools. I'm looking for a process to start to understand the software with the intent to modify or explain it. UML models might be a byproduct of this comprehension.</p>
http://stackoverflow.com/questions/220187/algorithms-or-libraries-for-textual-analysis-specifically-dominant-words-phras7Algorithms or libraries for textual analysis, specifically: dominant words, phrases across text, and collection of textMichael Julson2008-10-20T22:38:22Z2009-10-29T18:32:51Z
<p>I'm working on a project where I need to analyze a page of text and collections of pages of text to determine dominant words. I'd like to know if there is a library (prefer c# or java) that will handle the heavy lifting for me. If not, is there an algorithm or multiple that would achieve my goals below. </p>
<p>What I want to do is similar to word clouds built from a url or rss feed that you find on the web, except I don't want the visualization. They are used all the time for analyzing the presidential candidate speeches to see what the theme or most used words are. </p>
<p>The complication, is that I need to do this on thousands of short documents, and then collections or categories of these documents. </p>
<p>My initial plan was to parse the document out, then filter common words - of, the, he, she, etc.. Then count the number of times the remaining words show up in the text (and overall collection/category). </p>
<p>The problem is that in the future, I would like to handle stemming, plural forms, etc.. I would also like to see if there is a way to identify important phrases. (Instead of a count of a word, the count of a phrase being 2-3 words together)</p>
<p>Any guidance on a strategy, libraries or algorithms that would help are appreciated. </p>
http://stackoverflow.com/questions/294965/real-world-mysql-postgres-database-schema-examples-and-analysis-tools0Real world MySQL/Postgres database schema examples and analysis toolsVenkatesh Mandalapa2008-11-17T05:45:40Z2009-10-23T15:34:59Z
<p>Hello,</p>
<p>I am doing analysis on schema evolution and have really fallen short of real world database schemas that have evolved a bit and stored in version control. Mediawiki (<a href="http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3/maintenance/tables.sql" rel="nofollow">http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3/maintenance/tables.sql</a>) seems to be a very good candidate so far. I've considered Bugzilla, but they don't seem to have .sql files in the trunk as in Mediawiki. Perl scripts have to be executed which builds the database schema/tables - so instead of getting only one file as in mediawiki(tables.sql), I now essentially have to download entire Bugzilla folder for different revisions to understand schema changes.</p>
<p><strong>Question 1:</strong>
I am wondering if any of you have known or worked with large database schemas that are open source, under revision control and changes large enough to make schema evolution analysis (preferrably have DDL scripts - .sql files).</p>
<p><strong>Question 2:</strong>
Also, have you come across any tools that provides analysis (table/column count, patch between revisions, etc.) on .sql files (DDL scripts). All the tools that I found require the .sql files to be loaded into a database before doing any analysis on them. </p>
<p>For both the questions, MySQL or Postgres is preferred as the database.</p>
<p>I aprreciate any reponse from fellow members of this community.</p>
<p>Thank you,</p>
<p>Venkatesh Mandalapa</p>
http://stackoverflow.com/questions/951095/tool-for-analyzing-java-core-dump0Tool for analyzing java core dumpmargus2009-06-04T14:53:29Z2009-10-22T07:03:40Z
<p>If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables. </p>
<p>Something that can take core dump as frozen JVM.</p>
http://stackoverflow.com/questions/1526330/what-kind-of-specs-documents-analysis-do-you-get-from-superiors-when-starting-a1What kind of specs, documents, analysis do you get from superiors when starting a project?MaxiWheat2009-10-06T15:26:15Z2009-10-12T21:56:14Z
<p>I currently work in a small business (15-20 employees, 5 programmers) where most projects are custom built CMS and a few web applications products. </p>
<p>Since I started working there, I have worked on many projects, but specifications for each project vary a lot. Sometimes we get a little detail, a Word document telling what the client wants, and what we are suggesting (suggested form fields, a short description of display, etc.). Sometimes almost nothing except "do what you think is the best approach for this project/module/request".</p>
<p>My question to you guys, who might work in different kind of businesses, is: How (huge pile of paper? Word docs? Visios?) and what kind of information do you get from your superiors, managers, teamates when starting a project (plenty of analysis, drawings, etc.)? How much detail do you get on this?</p>
<p>Hope my question is clear enough, thank you.</p>
http://stackoverflow.com/questions/1548533/big-o-homework-question4big O homework questionNatalie2009-10-10T17:26:21Z2009-10-10T18:00:28Z
<p>I need to state the big o of the following fragment:</p>
<pre><code>sum =0;
for (int i=1; i<n; i++) {
for (int j=1; j< n/i; j++) {
sum = sum +j;
}
}
</code></pre>
<p>I know the outer loop is O(n) but I am having a problem analyzing the inner loop. I think it's O(log n). I would appreciate any help.
Thank you in advance.</p>
http://stackoverflow.com/questions/1529767/example-of-a-school-website-college-and-highschool-which-is-functional-and-acce0Example of a school website (college and highschool) which is functional and accessiblePennf0lio2009-10-07T06:02:36Z2009-10-07T06:13:38Z
<p>I'm looking for good example of school websites that I can get some inspiration it could be Highschool or College. </p>
<p>I'm planning to build a template or platform of a school website; And I want to provide a good solution for a school which don't have website yet. I want to get some Ideas how school website pages being structured and what are some useful function of a school website.</p>
http://stackoverflow.com/questions/1499395/reading-website-pages1Reading Website pagesbogha2009-09-30T16:55:45Z2009-09-30T16:57:47Z
<p>Hi,</p>
<p>my question is as follows:</p>
<p>assume there is a website called website.com/a</p>
<p>the website is being developed using PHP, Perl, Ruby and other languages.</p>
<p>i want to be able from my website to read this website pages, execute the code and then analyse the HTML result page tags and getting the content using PHP.</p>
<p>it's like reading news from some news websites and then displays it in my website in different format or different style.</p>
<p>thank you</p>
http://stackoverflow.com/questions/1377661/frequency-analyzer-in-c0Frequency Analyzer in C#ML2009-09-04T07:15:24Z2009-09-29T12:07:39Z
<p>Hi,</p>
<p>I'm looking for a C# source code that performs a frequency analysis on a WAV file and displays the results in a graph, similar to the one displayed in apps like WavePad.
Do you know where I can find such a code?</p>
<p>Thanks!</p>