Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
23k 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 ...
9
votes
6answers
3k 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 ...
6
votes
4answers
241 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 ...
3
votes
1answer
90 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
80 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 ...
2
votes
2answers
925 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 ...
2
votes
2answers
1k 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 ...
1
vote
1answer
73 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 ...
1
vote
3answers
137 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 ...
1
vote
2answers
131 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
171 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
152 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 ...
1
vote
2answers
793 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
3k 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 ...
0
votes
1answer
67 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
67 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 ...
0
votes
2answers
201 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 ...
0
votes
1answer
562 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 ...