Tagged Questions
The data-analysis tag has no wiki summary.
16
votes
12answers
2k views
What's the best approach to recognize patterns in data, and what's the best way to learn more on the topic?
A developer I am working with is developing a program that analyzes images of pavement to find cracks in the pavement. For every crack his program finds, it produces an entry in a file that tells me ...
12
votes
7answers
600 views
When should I use C++ instead of SQL?
I am a C++ programmer who occasionally uses MySQL to work with databases, but my SQL knowledge is rather limited. However I am surely willing to change that.
At the moment I am trying to do ...
9
votes
7answers
1k views
Efficient way to analyze large amounts of data?
I need to analyze tens of thousands of lines of data. The data is imported from a text file. Each line of data has eight variables. Currently, I use a class to define the data structure. As I read ...
8
votes
4answers
316 views
Data analysis using R/python and SSDs
Does anyone have any experience using r/python with data stored in Solid State Drives. If you are doing mostly reads, in theory this should significantly improve the load times of large datasets. I ...
7
votes
3answers
190 views
General techniques to work with huge amounts of data on a non-super computer
I'm taking some AI classes and have learned about some basic algorithms that I want to experiment with. I have gotten access to several data sets containing lots of great real-world data through a ...
7
votes
8answers
1k views
R and SPSS difference
i will be analysing vast amount of network traffic related data shortly. i will pre-process the data in order to analyse it. i have found that R and SPSS are among the most popular tools for ...
6
votes
4answers
275 views
Synonym finder algorithm
I think example will be much better than loooong description :)
Let's assume we have an array of arrays:
("Server1", "Server_1", "Main Server", "192.168.0.3")
("Server_1", "VIP Server", "Main ...
6
votes
2answers
402 views
Workflow for developing number crunching applications on amazon ec2/S3
Much has been written about deploying data crunching applications on EC2/S3, but I would like to know, what is the typical workflow for developing such applications?
Lets say I have a 1 TB of time ...
6
votes
1answer
2k views
Matplotlib: Formatting dates on the x-axis in a 3D Bar graph
Given this 3D bar graph sample code, how would you convert the numerical data in the x-axis to formatted date/time strings? I've attempted using the ax.xaxis_date() function without success. I also ...
6
votes
2answers
327 views
How can I get the (x,y) values of the line that is ploted by a contour plot (matplotlib)?
Is there an easy way to get the (x,y) values of a contour line that was plotted like this:
import matplotlib.pyplot as plt
x = [1,2,3,4]
y = [1,2,3,4]
m = ...
5
votes
4answers
845 views
How do add a column in a data frame in R
I have imported data from a file into a data frame in R. It is something like this.
Name Count Category
A 100 Cat1
C 10 Cat2
D 40 Cat1
E 30 ...
4
votes
1answer
1k views
Speed up Matplotlib?
I've read here that matplotlib is good at handling large data sets. I'm writing a data processing application and have embedded matplotlib plots into wx and have found matplotlib to be TERRIBLE at ...
4
votes
2answers
190 views
Looking for an estimation method (data analysis)
Since I have no idea about what I am doing right now, my wording may sound funny. But seriously, I need to learn.
The problem I'm facing is to come up with a method (model) to estimate how a software ...
4
votes
3answers
1k views
Best fit curve for trend line
Problem Constraints
Size of the data set, but not the data itself, is known.
Data set grows by one data point at a time.
Trend line is graphed one data point at a time (using a spline/Bezier curve).
...
4
votes
2answers
952 views
Trend analysis using iterative value increments
We have configured iReport to generate the following graph:
The real data points are in blue, the trend line is green. The problems include:
Too many data points for the trend line
Trend line ...
4
votes
3answers
178 views
Getting the contents of a library interactively in R
Is there an equivalent of dir function (python) in R?
When I load a library in R like -
library(vrtest)
I want to know all the functions that are in that library.
In Python, dir(vrtest) would ...
4
votes
2answers
1k views
How do you deal with missing data using numpy/scipy?
One of the things I deal with most in data cleaning is missing values. R deals with this well using its "NA" missing data label. In python, it appears that I'll have to deal with masked arrays which ...
3
votes
1answer
236 views
Determine if a set of data is from a linear or logarithmic function?
I have a set of data points and am curious if the data represents a linear function or a logarithmic function.
The data set is 2 dimensional.
Let's say an ideal set of data points followed the ...
3
votes
1answer
483 views
Using R to get volatility and Peak to avg. Ratio of internet traffic data
I have network traffic data in the following for for each hour of a ten day period as follows in a R dataset.
Day Hour Volume Category
0 00 100 P2P
...
3
votes
3answers
217 views
Algorithm to sum/stack values from a time series graph where data points don't match on time
I have a graphing/analysis problem i can't quite get my head around. I can do a brute force, but its too slow, maybe someone has a better idea, or knows or a speedy library for python?
I have 2+ time ...
3
votes
2answers
156 views
What process do i take to understand an existing system for a very large hospital for example?
I've been asked to study and document the existing system for a tertiary hospital. The hospital consist of administrative (Accounts, Admin, Engineering,...) and clinic units (Pharmacy, The process by ...
3
votes
2answers
351 views
Data analysis tool like MS excel
I have a large number of data that needs to be compared,
We are using Microsoft EXCEL, it costs, and it is slow, besides the graph that it generates is also not up to the mark.
Now, is their any other ...
2
votes
3answers
190 views
find all non-repeating paths through a set of connected nodes/process diagram
I am trying to understand if its possible in any reasonable way to establish a set of non-repeating paths through a given process diagram.
here are some basic facts about the process diagrams i have:
...
2
votes
1answer
54 views
Chaging an axis values on a plot
I was wondering how can i change the data on one axis.
Im making some spectrum analysis on some data and my x-axis is the index of some matrix. I'd like to change it so that the x-axis becomes the ...
2
votes
2answers
374 views
A question on cross-correlation & correlation coefficient [closed]
Possible Duplicate:
Matlab Cross correlation vs Correlation Coefficient question
When I cross correlate 2 data sets a and b (each 73 points long) in MATLAB and graph it, it appears like a ...
2
votes
1answer
142 views
Data Visualisation Algorithm Books [closed]
I am looking to buy a good book on data visualisation and would love to here your recommendations. My background is mathematical and I am currently working on a data analysis tool for my employer. The ...
2
votes
3answers
304 views
How do I lag columns in MySQL?
Consider the following table:
SELECT id, value FROM table ORDER BY id ASC;
+-----+---------+
| id | value |
+-----+---------+
| 12 | 158 |
| 15 | 346 |
| 27 | 334 |
| 84 | 378 ...
2
votes
3answers
2k views
R: Getting Probability Density of Data
I need to analyze some data about internet sessions for a DSL Line. I wanted to have a look at how the session durations are distributed. I figured a simple way to do this would be to begin by making ...
2
votes
1answer
66 views
Resources to learn about engineering aspects of data analytics (OLAP, warehousing, ETL, etc.)
I'm a math/stats guy, interested in learning more about the engineering aspects of "data analytics" (probably an overly broad term, but this is definitely a case of "I don't know what I don't know", ...
2
votes
3answers
154 views
Unit testing…should it be used here?
Duplicate: Learning Unit Testing
I'm trying to develop some software for my research group to analyze and plot experimental data. I would like to make it where it's pretty error free. Would this ...
2
votes
14answers
1k views
What is the object oriented programming computing overhead cost?
I have a large set of data (a data cube of 250,000 X 1,000 doubles, about a 4 gig file) and I want to manipulate it using a previous set of OOP classes I have written in Python. Currently the data ...
2
votes
4answers
573 views
What's the best interactive Analysis and Plotting Tool for software testing?
My realtime app generates a data log: 100 words of data @10Khz. I need to analyze it and produce some plots of the results. There are intermediate calculations involved - I need to take some ...
1
vote
0answers
39 views
upper limit of significance over time for whole set of data?
I have a set of news articles for which there are stats, eg.: number of twitter posts mentioning the article for range of days. Natural behavior of stats values is that the number of new posts grows ...
1
vote
0answers
40 views
how to annotate files - when long filenames are not enough
I work with many files doing general data analysis.
Things I want to know about my files include:
what data is contained in the file (in long and very long descriptive, english text)?
is the file ...
1
vote
1answer
83 views
What is the Optimal Way for a Web Metrics App to Calculate a Visitor's Time On Site?
i am developing an internal web analysis system like Google Analytics, i am not very clear about the concept of page stay time, the typical explanation
of this measure from web is:
user accessed ...
1
vote
2answers
145 views
Bash: Symlink Following
I've got a file tree containing a bunch of data I've generated. I've decided that at several stages of the data generation, I'd like to try some different configuration options in the programs that ...
1
vote
1answer
309 views
How to add a new column and aggregate values in R
I am completely new to gnuplot and am only trying this because I need to learn it. I have a values in three columns where the first represents the filename (date and time, one hour interval) and the ...
1
vote
1answer
263 views
How do you test a implementation of k-means? [closed]
how do you test your own k-means implementation for multidimensional data sets?
I was thinking of running an already existing implementation (i.e. Matlab) on the data and compare the results with my ...
1
vote
0answers
371 views
How to use CDF and PDF statistics for analysis
This may be too much of a general question but I hope I can find help here. I am starting a RA job in my university and my topic will be related to Internet Traffic Analysis. I am fairly new to the ...
1
vote
8answers
891 views
Parsing multiline data in Perl
I have some data that I need to analyze. The data is multilined and each block is separated by a newline. So, it is something like this
Property 1: 1234
Property 2: 34546
Property 3: ACBGD
Property ...
1
vote
3answers
123 views
Parsing semi-structured data - can I use any classifiers?
I've got a set of documents which have a semi-regular format. Rows are typically separated by new line characters, and the main components of each row are separated by spaces. Some examples are a set ...
1
vote
3answers
3k views
Fitting polynomial model to data in R
I've read the answers to this question and they are quite helpful, but I need help particularly in R.
I have an example data set in R as follows:
x <- c(32,64,96,118,126,144,152.5,158)
y <- ...
1
vote
2answers
135 views
Segmenting a set of data with discrete and continuos data values into one of two groups without using analysis services?
Say I have a table with the following scheme (note: this example is hypothetical, though the real use case is similar).
Type | Name | Notes
...
1
vote
2answers
110 views
Finding Weekly Summary from a table
I am here to write a SQL statement for finding the weekly summary from a table. I had a table with following fields:
UIN, Date, Staff, work_hours
Now I would like to gather information how many ...
1
vote
3answers
921 views
Non-linear regression models in PostgreSQL using R
Background
I have climate data (temperature, precipitation, snow depth) for all of Canada between 1900 and 2009. I have written a basic website and the simplest page allows users to choose category ...
1
vote
0answers
84 views
Displaying access log analysis
I'm doing some work to analyse the access logs from a Catalyst web application. The data is from the load balancers in front of the web farm and totals about 35Gb per day. It's stored in a Hadoop HDFS ...
1
vote
2answers
259 views
Find Lines in a cloud of points
I have an array of Points. I KNOW that these points represent many lines in my page.
How can I find them? Do I need to find the spacing between clouds of points?
Thanks
Jonathan
1
vote
4answers
415 views
How do I implement a real time *financial* statistics engine from SQL server data for dashboard display?
We currently use excel automation to calculate time series statistics and store the results in our SQL Server 2008 database for easy display/sorting/etc. later.
I'm currently redesigning the home ...
1
vote
1answer
540 views
Probability time series, observed data probabilities (deja vu)
okay folks...thanks for looking at this question. I remember doing the following below in college however I forgotten the exact solution. Any takers to steer in the right direction.
I have a time ...
1
vote
3answers
875 views
Python, ROOT, and MINUIT integration?
I'm a modest graduate student in a high energy particle physics department. With an unfounded distaste for C/C++ and a founded love of python, I have resorted to python for my data analysis so far ...