フィルターのクリア

correlation and fitting line to a data set with standard error

5 ビュー (過去 30 日間)
karlo gonzales
karlo gonzales 2012 年 11 月 12 日
Dear friends,
suppose we have a set of data as
X=x1,x2,x3,x4,.......x26 , Y= y1+/-a , y2+/- b, y3+/-c ........, y26+/-z (a..z are standard error for each value of yi )
would you tell me 1- how can we find the correlation between X, Y, 2- how can we fit a line/curve to these data
thanks

採用された回答

Star Strider
Star Strider 2012 年 11 月 12 日
It's easy to convert the standard errors ( SE ) into inverse-variance weights:
Wgt = 1./(N.*SE.^2);
where N are the number of observations used to calculate each SE. They are usually the same for all but can vary, so this allows N to be a vector of the same size as SE.
1. This File Exchange routine calculates a Weighted Correlation Matrix.
2. Weighted Nonlinear Regression is easy enough to do (in 2012a and later). In 2011 and earlier versions, it is a bit more complicated but definitely possible. (See this Weighted Nonlinear Regression Demo for details.) If you want to do linear regression, all you have to do is specify a linear model.

その他の回答 (1 件)

karlo gonzales
karlo gonzales 2012 年 11 月 12 日
thank you so much "Star Strider" for your hints!

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by