Data Analysis involves extracting meaning and insights from raw data. It involves methods and algorithms that examine, clean, transform and model the data to obtain conclusions.
1
vote
0answers
22 views
Another Cassandra Data Modelling Approach
I have read various sources on this subject and understand the idea of modelling around the queries needed but wondered how far this can be stretched for Cassandra.
I need to store processing events ...
0
votes
0answers
14 views
when to aggregate when time series forecasting
I have a some historical sales data for various product SKUs, including category information ("department" "category", "subcategory"). I want to use this to generate sales curve (a baseline forecast ...
-2
votes
0answers
26 views
I trying to learn data analysis then which languages and analysis to be leart [closed]
Hello I'm new to data analysis and I want to learn it. Can anyone help me out in finding ways to learn and what to learn for Data Analysis?
0
votes
0answers
19 views
Finding matrices correlation
I have two matrices (A and B) which have same rows and cols. I want to compare them in order to find if there is any row in which the associated values in matrix A are much less than values of the ...
0
votes
0answers
41 views
Working with Self Organizing Maps - How do I interpret the results?
I have this data set that I thought would be a good candidate for making a SOM.
So, I converted it to text thusly:
10
12 1 0 0
13 3 0 0
14 21 0 0
19 1983 15 0
24 ...
2
votes
1answer
31 views
update data frame variable according to another table
I have two data frames Table 1 and Table 2 each one with two variables (V1, V2)
What I want to do is to update the V2 for each row of Table 1 according to V2 of Table 2.
For example, in Table 1 there ...
0
votes
1answer
44 views
real time data analysis and chart
Which is the best open source real time data analytics tool so that I can show the processed data in phpmyadminin front end in form of graph
Like the scores of the 5000 students are there and I want ...
0
votes
1answer
82 views
Find string similarities between two dimensions in SQL
I have two tables and I want to find matches where values can be found in one of the tables and where they are in the second.
In table A I have a list over search queries by users, and in table B I ...
3
votes
1answer
72 views
How to extract a list from pandas?
I'd like to extract and return just the contents, values, of an object in pandas.
I have for example...
>>> xx[xx['Business']=="1"]['Label']
3 Sloan School of Management
22 ...
0
votes
0answers
97 views
Pandas - Generate histogram for value in column in GroupedBy? [closed]
I have a fat (1Gb) CSV file that I'm hoping to
The file looks a little like this:
Filename Timestamp1 Timestamp2 Delta
foobar_2013-03-4 some_time ...
1
vote
2answers
73 views
How to visualize continuous time spent in a location in pandas?
I have some data with timestamps and location data like follows:
A 2013-02-05 19:45:00 (39.94, -86.159)
A 2013-02-05 19:55:00 (39.94, -86.159)
A 2013-02-05 20:00:00 (39.777, -85.995)
A ...
3
votes
2answers
191 views
Customizing rolling_apply function in Python pandas
Setup
I have a DataFrame with three columns:
"Category" contains True and False, and I have done df.groupby('Category') to group by these values.
"Time" contains timestamps (measured in seconds) ...
1
vote
1answer
199 views
Plotting results of Pandas GroupBy
I'm starting to learn Pandas and am trying to find the most Pythonic (or panda-thonic?) ways to do certain tasks.
Suppose we have a DataFrame with columns A, B, and C.
Column A contains boolean ...
0
votes
1answer
52 views
Analytical TSQL
I need to produce some SQL that will show me the trend (up or down tick) in some transacitons.
Consider this table with a PlayerId and a Score
PlayerId, Score, Date
1,10,3/13
1,11,3/14
1,12,3/15
...
0
votes
1answer
50 views
CSV-backed ORM?
I'm looking for an ORM that supports CSV as the data-store and that mimics (not too fancy, but some sugar is welcome) ORMs like Sequel, DataMapper or ActiveRecord.
My goal is to import some CSV ...
0
votes
1answer
76 views
Selecting and averaging values in pandas data frames
I am new to the pandas data analysis library. The task I need to get done is the following:
Given a data frame (table) with a set of columns C, select all the rows for which the values in a subset of ...
0
votes
0answers
47 views
Data Analysis Advice [closed]
I have a data set of around 0.5m rows and 30 columns. I need to pivot on some fields, unpivot on others aggregate and create calculated items.
Where is a good place to start?
What library is useful ...
0
votes
1answer
98 views
Pandas undocumented DataFrame.keys() method
Im new in Pandas, and while playing with its Dataframe, i found method keys() which works pretty like dict.keys(). But I cannot find it in docs. What am i missing?
0
votes
1answer
87 views
cvpartition class in matlab.. c= cvpartition(n,kfold,k). what does n specify here?
I am actually trying to load a csv file with 1261 rows and use cvpartition class in matlab so I could collect training and testing sets for 7-models(using k='7'-fold crossvalidation).
1
vote
3answers
79 views
Which Analysis and Reporting Web-Based system?
I need to choose a solution (better if open source) that give to me:
Report Designer web gui for the end-user, width support for bar/line/scatter/pie charts,
Web-based Interactive Analysis gui for ...
4
votes
3answers
1k views
Random Number Generation to Memory from a Distribution using VBA
I want to generate random numbers from a selected distribution in VBA (Excel 2007).
I'm currently using the Analysis Toolpak with the following code:
Application.Run "ATPVBAEN.XLAM!Random", "", ...
1
vote
3answers
151 views
how to read from an array without a particular column in python
I have a numpy array of dtype = object (which are actually lists of various data types). So it makes a 2D array because I have an array of lists (?). I want to copy every row & only certain ...
0
votes
1answer
314 views
Processing a very very big data set in python - memory error
I'm trying to process data obtained from a csv file using csv module in python. there are about 50 columns & 401125 rows in this. I used the following code chunk to put that data into a list
...
-3
votes
1answer
136 views
Download a sample database of calls in telecommunication [closed]
I am trying to do a project for data analysis based on the details of calls stored in Call Details Record (CDR) of telecommunications industry. It will take some time to obtain the real data, and ...
0
votes
1answer
44 views
How to get mean from plotted data? Going from narrowed plot to data
I got this plot by narrowing down the diamond dataset in ggplot2. I did this by sorting for a x limit, cut, etc.
library(ggplot2)
qplot(price,carat,data=diamonds,cut="Ideal",color=clarity) + ...
1
vote
2answers
243 views
best tool to handle big data and data visualization [closed]
I'm currently doing (starting) my project on big data and data visualization. So please let me know if there any the best software to handle big data and data visualization i.e for data analysis.
0
votes
2answers
518 views
R randomForest for classification
I am trying to do classification with randomForest, but I am repeatedly getting an error message for which there seems to be no apparent solution (randomForest has worked well for me doing regression ...
0
votes
2answers
93 views
Hierarchical data in R- How do I sum over subsets, while maintaing the tree?
Probably, I haven't defined the problem very well. I don't seem to understand what R is returning out of sapply. I have a large dataframe of hierarchical data. About half the columns are factors and ...
2
votes
2answers
168 views
pandas: read_csv combined date-time columns as index into a dataframe
I have a csv file which contains date and time stamps as two of the columns. I am using pandas read_csv to read the contents into a dataframe. My ultimate goal is to plot time series graphs from the ...
0
votes
2answers
125 views
Matlab: extrapolating (converting) data based on Min and Max values
I have a column vector (not evenly spaced) of size 10000 x 1, with a range of 1 to 7. I want to set new min and max values (min = 32, max = 72) and extrapolate the vales in between so previous values ...
0
votes
2answers
251 views
python bar plot from list of tuples
Very newbie question:
I need to draw a bar plot from a list of tuples. The first element is a name (categorical) for the x axis, the second element is float type (for the y axis). I'd also like to ...
2
votes
2answers
80 views
Disable automatic dict sorting with dict.fromkeys( )?
def parse_urls(weeks_urls):
for wkey in weeks_urls.keys():
results=urllib2.urlopen(weeks_urls[wkey])
lines = list(csv.reader(results))
lines=clean_lines(lines)
...
2
votes
1answer
413 views
Data manipulation and analysis framework in java
I am looking for a fast, efficient and open source library written in java for data manipulation and analysis. I am currently using another open source library for neural networks and I want to be ...
4
votes
1answer
153 views
Plot pandas dataframe containing NaNs
I have GPS data of ice speed from three different GPS receivers. The data are in a pandas dataframe with an index of julian day (incremental from the start of 2009).
This is a subset of the data (the ...
1
vote
1answer
82 views
Parallel fitting on Mathematica
I have a data that looks like as follows
data=
Table[
Table[
a[[i]]*j+1,
,{j,dataLength}]
,{i,numOfDatasets}]
I would like to fit these datasets with a ...
-2
votes
1answer
164 views
Is there an RDBMS (or other DBMS) that is better at pivots, full outer joins, and dynamic queries than… R? [closed]
I'm finally starting to beat MySQL into submission for a database of scientific results I am putting together. I chose MySQL because it's what I knew (or thought I did). I'm stuck with it for this ...
0
votes
1answer
55 views
Analyse and rate users, and rank search results based on criteria [closed]
I'm not sure if this should be posted here (as it is a programming-related question) or on maths (as it could be statistical) or even if it is a valid question. Please let me know if you think I've ...
1
vote
3answers
331 views
Processing accelerometer data
I would like to know if there are some libraries/algorithms/techniques that help to extract the user context (walking/standing) from accelerometer data (extracted from any smartphone)?
For example, I ...
4
votes
1answer
2k views
Using QUARTILE in an Excel pivot table to summarise data by sub-populations
I've got a large table of data in an Excel spreadsheet that, essentially, can be considered to be a collection of values for individuals identified as belonging to various subpopulations:
IndivID ...
1
vote
1answer
348 views
Efficient way of doing permutations with pandas over a large DataFrame
Currently I have a pandas DataFrame like this:
ID A1 A2 A3 B1 B2 B3
Ku8QhfS0n_hIOABXuE 6.343 6.304 6.410 6.287 6.403 6.279
...
0
votes
1answer
94 views
Finding low-voted posts on Reddit
The Reddit API provides information on the score of any given post, including the number of upvotes, the number of downvotes, and the overall score. I want to use this information to do some analysis ...
-1
votes
2answers
107 views
Cloud shared memory management in openstack
I am going to do a data analysis, which size is 2TB, by using python. There is not enough memory for my local machine. Is it possible to setup a cloud by using openstack and let the cluster share ...
1
vote
1answer
71 views
How to detect advertisement link?
I want to detect the links in page which are used for advertisement. or is there any statistical data by which I can guess this link is for advertisement.
1
vote
1answer
427 views
What parameters are best for a Decision Tree in Rapidminer
I have a set of data with 14 regular attributes. I am trying to create the best decison tree in rapidminer from this training data so that I can use this tree on scoring data.
However I am not sure ...
1
vote
1answer
233 views
Calculating subtractions of pairs of columns in pandas DataFrame
I work with significantly sized (48K rows, up to tens of columns) DataFrames. At a certain point in their manipulation, I need to do pair-wise subtractions of column values and I was wondering if ...
3
votes
1answer
267 views
pandas: slice on hierarchical index without a copy
I would like to modify DataFrame entries for some rows at a specific level of a hierarchical index. Here is a canonical example:
>>> index = pd.MultiIndex.from_arrays([['a','a', 'b', 'b'], ...
1
vote
2answers
449 views
pandas: apply function to DataFrame that can return multiple rows
I am trying to transform DataFrame, such that some of the rows will be replicated a given number of times. For example:
df = pd.DataFrame({'class': ['A', 'B', 'C'], 'count':[1,0,2]})
class count
...
0
votes
1answer
134 views
Phonetic filter factory for Hindi
I am working with Apache solr ,I am trying to use phonetic filter factory , I have tried all the encoders that are available with solr.PhoneticFilterFactory but none of them is supporting indian ...
1
vote
1answer
465 views
Pandas DataFrame with MultiIndex: efficient way of checking duplicate elements in one of the indices
I'm working with data like this:
Sample Detector Cq
P_1 106 23.53152
P_1 106 23.152458
P_1 106 23.685083
P_1 135 24.465698
P_1 135 23.86892
P_1 135 ...
-1
votes
1answer
86 views
trouble making a decision on where to invest my time with big data analyses in R [closed]
I know R, I know SQL, I use Windows, I have a budget of $0, I have a terabyte of data, I have twelve processors, I have 96GB of RAM, I am motivated to learn new software if the speed gains will pay ...

