Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to do interpolation

Tags:

c#

.net-3.5

I have very little data for my analysis, and so I want to produce more data for analysis through interpolation.

My dataset contain 23 independent attributes and 1 dependent attribute.....how can this done interpolation?

EDIT:

my main problem is of shortage of data, i hv to increase the size of my dataset, n attributes are categorical for example attribute A may be low, high, meduim, so interpolation is the right approach for it or not????

like image 486
akss Avatar asked Jul 30 '10 12:07

akss


1 Answers

This is a mathematical problem but there is too little information in the question to properly answer. Depending on distribution of your real data you may try to find a function that it follows. You can also try to interpolate data using artificial neural network but that would be complex. The thing is that to find interpolations you need to analyze data you already have and that defeats the purpose. There is probably more to this problem but not explained. What is the nature of the data? Can you place it in n-dimensional space? What do you expect to get from analysis?

like image 159
Maciej Avatar answered Oct 09 '22 13:10

Maciej