BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
spichal
Calcite | Level 5

 

I have found some article how to fit some data with circle that is best (Fit a circle to data by Rick Wicklin, https://blogs.sas.com/content/iml/2015/06/08/fit-circle.html).

Now, I want to fit the same data with ellipse and I don't know how to rewrite the code. 

 

I have some data as a result of measuring of tusks of wild boars. I think that the best fitting curve is logarithmic spiral, but for more complex view I need to compare data with more curves.

 

 

Thanks for any answer.

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Ah! I see from your program that you have already discovered my article about fitting a spiral to data. Good. You ought to be able to use a similar approach with the parameterization 

x = a*cos(theta);
y = b*sin(theta);

View solution in original post

3 REPLIES 3
Rick_SAS
SAS Super FREQ

1. Can you post some sample data?

2. Do you expect the eccentricity to be small?

3. Are your data aligned in coordinate directions so that you can use the elliptic equation

(x-x0)^2 /a^2 + (y-y0)^2 /b^2 = 1

or do you need to rotate the data first?

4. Do you have data only along a portion of the arc (as in the blog post you link to) or do you have data all the way around the ellipse?

spichal
Calcite | Level 5

Ad 1) There is a file (in attachment)  with some data.

Ad 2) Yes, I think the eccentricity might be small.

Ad 3) Data come from the picture of wild boar’s tusk, which was located in Geogebra and the coordinates of the boundary were determined. I am not sure if it is necessary before looking for the best fitting curve to rotate the coordinates.

Ad 4) I have only a portion of the arc. The arc of wild boar’s tusk is usually in a range up to 180°.

 

Thanks for your interest.

Rick_SAS
SAS Super FREQ

Ah! I see from your program that you have already discovered my article about fitting a spiral to data. Good. You ought to be able to use a similar approach with the parameterization 

x = a*cos(theta);
y = b*sin(theta);

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 3 replies
  • 832 views
  • 0 likes
  • 2 in conversation