The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
72 views

Map list to list of lists by index (Python)

I'm looking for an efficient way to map a list of values, say x = [1,2,3,4,5,6,7,8,9] to another list, containing lists of values of the same total range, for example z = [[1,2,3], [4,5,6], ...
1
vote
1answer
63 views

Python: lists, bins, and sorting

I have a quite specific thing to do and do not know how to accomplish that: I have two lists, x and y, of corresponding values (about 10k in each list). First, I need to bin both lists according to ...
0
votes
2answers
43 views

Separate rows of data by 0 values in R

I have a large time series (in data frame form) (n=>6000) that looks like this: time, precip 1 2005-09-30 11:45:00, 0.08 2 2005-09-30 23:45:00, 0.72 3 2005-10-01 11:45:00, ...
-3
votes
1answer
33 views

Best method to group a population into representative bins? [closed]

I have a number of independent variables (6) that I would like to group into representative bins. I would like to be able to say "Bin A are all low frequency high spend shoppers" "Bin B are all mass ...
0
votes
0answers
24 views

Smotting in WEKA by binning and/or regression ?

How do we smooth data in weka by binning and or regression in WEKA? I am new to weka I knew very little about it. Thank you for your time, Ferda
0
votes
0answers
47 views

Rebinning Data Cube

I have a cube of data that is too highly binned in "x" and "y" direction. I want to decrease the binsize taking into account that the cells have different weighting. Example: # These are the centers ...
0
votes
1answer
26 views

Using Ranges Against a Dataset

I am having a spot of trouble with a seemingly simple problem. I have a list of atom coordinates in the format X,Y,Z. I have used numpy.linspace() to make a list of 'bins' from the Z coordinates. The ...
4
votes
3answers
88 views

R 2D binning of data frame with secondary complex calculations

I have a data frame that looks generally like this df.data <- data.frame(x=sample(1:9, 10, replace = T), y=sample(1:9, 10, replace=T), vx=sample(-1:1, 10, replace=T), vy=sample(-1:1, 10, ...
1
vote
2answers
55 views

Python: Checking to which bin a value belongs

I have a list of values and a list of bin edges. Now I need to check for all values to what bin they belong to. Is there a more pythonic way than iterating over the values and then over the bins and ...
0
votes
0answers
61 views

d3.js load json for hex binning

I am trying to get this example: http://jsfiddle.net/FSKW6/1/ taken from this gist https://gist.github.com/calvinmetcalf/4955504 to load non-random data. Right now it generates 60,000 random points: ...
3
votes
2answers
91 views

Numpy rebinning a 2D array

I am looking for a fast formulation to do a numerical binning of a 2D numpy array. By binning I mean calculate submatrix averages or cumulative values. For ex. x = numpy.arange(16).reshape(4, 4) would ...
3
votes
1answer
176 views

Better binning in pandas

I've got a data frame and want to filter or bin by a range of values and then get the counts of values in each bin. Currently, I'm doing this: x = 5 y = 17 z = 33 filter_values = [x, y, z] ...
2
votes
2answers
177 views

Binning and averaging huge pointcloud in Matlab

I have a huge 3D pointcloud, [3x40e6]. It's a pointcloud of a flat surface, so it's more like 2.5D in that sense. I would like to bin the pointcloud into a fixed mesh range so that i can just put it ...
0
votes
1answer
227 views

fit a function to a histogram created with frequency in gnuplot

Intro In gnuplot there's a solution to create histogram from file named hist.dat what likes 1 2 2 2 3 by using commands binwidth=1 set boxwidth binwidth bin(x,width)=width*floor(x/width) + ...
2
votes
1answer
311 views

2D and 3D Scatter Histograms from arrays in Python

have you any idea, how I can bin 3 arrays to a histogram. My arrays look like Temperature = [4, 3, 1, 4, 6, 7, 8, 3, 1] Radius = [0, 2, 3, 4, 0, 1, 2, 10, 7] ...
0
votes
1answer
79 views

Python - How to generate a binning index for a list?

I have a 10 bins: bins = [0,1,2,3,4,5,6,7,8,9] I have a list of 25 values: values = [10,0,0,14,14,123,235,0,0,0,0,0,12,12,1235,23,234,15,15,23,136,34,34,37,45] I want to bin the values ...
0
votes
1answer
149 views

Binning Technique to discretize continues data

I have a following data set, Columns 1 through 6 1.0000 0 0.9954 -0.0589 0.8524 0.0231 1.0000 0 1.0000 -0.1883 0.9304 -0.3616 1.0000 0 1.0000 ...
3
votes
1answer
381 views

Change movie dimensions in matlab

I'm trying to display live video from an external camera using the function "movie" after performing a 2x binning. My original video size is 768x576. However, when I bin my pixels, I get a 384x288 ...
2
votes
1answer
411 views

Python: how to make an histogram with equally *sized* bins

I have a set of data, and want to make an histogram of it. I need the bins to have the same size, by which I mean that they must contain the same number of objects, rather than the more common ...
4
votes
3answers
158 views

R how to bin weighted data

Hi I'm trying to draw an histogram in ggplot but my data doesn't have all the values but values and number of occurrences. value=c(1,2,3,4,5,6,7,8,9,10) ...
2
votes
1answer
88 views

how many bins given some data

I have to plot some data using histograms. My data are between [0,1], with no large concentrations on any particular point. What's a good ratio between number of samples and number of bins (of equal ...
2
votes
2answers
240 views

MatLab - histc with many edges vector

Consider this : a = [1 ; 7 ; 13]; edges = [1, 3, 6, 9, 12, 15]; [~, bins] = histc(a, edges) bins = 1 3 5 Now I would like to have the same output, but with a different "edges" ...
2
votes
2answers
277 views

fast categorization (binning)

I've a huge number of entries, every one is a float number. These data x are accesible with an iterator. I need to classify all the entries using selection like 10<y<=20, 20<y<=50, .... ...
1
vote
1answer
190 views

R help: determine interval, binning a number

I'm trying to "bin" some randomly generated numbers between an interval defined between to adjacent values within a vector of values I previously have. So essentially, I have the following: vectorA ...
1
vote
1answer
313 views

making small values visible on matplotlib colorbar in python

I'm using colorbar with the default "jet" map and use that with "hexbin". I have counts in my bins that range from 0 to about 1500. The problem is that the smallest values in some hexagonal bins are ...
7
votes
4answers
615 views

Mathematica fast 2D binning algorithm

I am having some trouble developing a suitably fast binning algorithm in Mathematica. I have a large (~100k elements) data set of the form T={{x1,y1,z1},{x2,y2,z2},....} and I want to bin it into ...
4
votes
1answer
1k views

resize with averaging or rebin a numpy 2d array

I am trying to reimplement in python an IDL function: http://star.pst.qub.ac.uk/idl/REBIN.html which downsizes by an integer factor a 2d array by averaging. For example: >>> ...
3
votes
2answers
257 views

Selecting between duplicate data in a data frame

Earlier I asked a question about extracting duplicate lines from a data frame. I now need to run a script to decide which of these duplicates to keep in my final data set. Duplicate entries in this ...
1
vote
3answers
206 views

Bin evenly: remainder spacing is uneven

I'm writing a script to evenly bin an arbitrary number $epi into an arbitrary number of bins $dpi. epi stands for Ends per Inch. dpi means Dents per Inch. There are 3 requirements: bin number should ...
0
votes
1answer
114 views

Binning different lengths in R

input1 dput(a1  100 200 + a1  250 270 + a1  333 340 - a2  450 460 +) input2 dput(a1  101 106 + a1  112 117 + a1  258 259 + a1  258 259 + a1  258 259 + a1  258 259 + a1  258 259 + a1  258 259 + a1  ...
0
votes
1answer
116 views

C# GetHashCode for binning

I would like to bin a set of objects, in particular Point types with an x and y value so that I can count the number of points at each x, y pair that exists in the set of Points. The max value of x ...
1
vote
2answers
254 views

Binning average in R

I have a matrix with n rows and n columns and I would like to do binning average 10 rows at a time, which means in the end I am left with a matrix of size n/10-by-n. I added the matlab library and ...
1
vote
1answer
394 views

Binning NMR data in R

I've imported NMR spectra on R as .csv file ( first column represent the ppm values the others, signal intensity for various spectra) and I would like to bin the data, let's say, make every 5 points ...
1
vote
4answers
321 views

How to dynamically generate bands/groups of data with similar numbers in each?

I want to dynamically generate bands, that will then be grouped in reports. My first thought was generate the bands by taking the minimum value and the maximum value and then dividing up the ...
0
votes
2answers
458 views

numpy.digitize returns values out of range?

I am using the following code to digitize an array into 16 bins: numpy.digitize(array, bins=numpy.histogram(array, bins=16)[1]) I expect that the output is in the range [1, 16], since there are 16 ...
3
votes
2answers
4k views

Sorting items into bins in MATLAB

If I have a set of data Y and a set of bins centered at X, I can use the HIST command to find how many of each Y are in each bin. N = hist(Y,X) What I would like to know is if there is a built in ...
0
votes
1answer
791 views

Root mean square deviation on binned GAM results using R

Background A PostgreSQL database uses PL/R to call R functions. An R call to calculate Spearman's correlation looks as follows: cor( rank(x), rank(y) ) Also in R, a naïve calculation of a fitted ...
63
votes
5answers
57k views

Histogram using gnuplot?

I know how to create a histogram (just use "with boxes") in gnuplot if my .dat file already has properly binned data. Is there a way to take a list of numbers and have gnuplot provide a histogram ...
1
vote
2answers
2k views

assigning points to bins

What is a good way to bin numerical values into a certain range? For example, suppose I have a list of values and I want to bin them into N bins by their range. Right now, I do something like this: ...
1
vote
1answer
5k views

How should I perform this binning and averaging in MATLAB?

I am trying to perform a binning average. I am using the code: Avg = mean(reshape(a,300,144,27)); AvgF = squeeze(Avg); The last line gets rid of singleton dimensions. So as can be seen I am ...
20
votes
8answers
7k views

MySQL: Getting data for histogram plot?

Is there a way to specify bin sizes in MySQL? Right now, I am trying the following SQL query: select total, count(total) from faults GROUP BY total; The data that is being generated is good enough ...
4
votes
3answers
3k views

Howto bin series of float values into histogram in Python?

I have set of value in float (always less than 0). Which I want to bin into histogram, i,e. each bar in histogram contain range of value [0,0.150) The data I have looks like this: 0.000 0.005 0.124 ...