|
Re: what things can i do with set of X and Y variables
A note on terminology: you mean you have one variable X, and one variable Y, and a number of values for those variables.
What you might do depends on what your assignment is looking for. Do you compute squared errors/correlation, or F-scores for your regression coefficients? Those are useful. If you want to do entirely different kinds of regression you might try implementing logistic regression (although that might be a little trickier since it is not closed form and must be computed numerically). A normal quantile plot for your regression error is another thing you could do.
|