
I have sample data like in above format along X, Y axis. Now what i would like to do is to devide it in "n" number of slabs having fixed values. Now how do i achive this in mathematics(statistics).
Please guide me to good and simple tutorial so that i can understand it. I would like to use this in computer algorithm to solve one problem.
I learned it in school, college and now i am having hard time to remember, understand and interpret it. I wish i could have done it more seriously.
Are you interested in binning the data? If so, there are a few algorithms that you can use to group the data. But first you need to decide what method to use to bin the data. The most popular methods are "equal width" and "equal frequency". Sound like you need "equal width". Here are a couple of links.
http://cs-people.bu.edu/dgs/courses/cs105/lectures/data_mining_preparation.pdf http://en.wikipedia.org/wiki/Histogram
-Ralph Winters