SAS CODE
* Fun With SAS ODS Graphics: Easter Egg Equation Hunt
References
1. What is mathematical equation for an egg? (Quora)
https://www.quora.com/What-is-mathematical-equation-for-an-egg
2. Equation of Egg Shaped Curve of the Actual Egg is Found (Nobuo Yamamoto)
http://www.geocities.jp/nyjp07/index_egg_E.html
3. Solution for (x^2+y^2)^2 = x^3+(3/10)xy^2 (Wolfram)
http://www.wolframalpha.com/input/?i=(x%5E2%2By%5E2)%5E2+%3D+x%5E3%2B(3%2F10)xy%5E2
4. The Colors of Easter
https://www.lifewire.com/the-colors-of-easter-4126619;
data egg; * Use formula to create "Easter egg" polynomial points;
id=1;
do x=0 to 1 by .0001;
y = sqrt(-20*x**2 + sqrt(280*x + 9)*x + 3*x)/(2*sqrt(5));
output;
end;
do x=1 to 0 by -.0001;
y = -sqrt(-20*x**2 + sqrt(280*x + 9)*x + 3*x)/(2*sqrt(5));
output;
end;
ods graphics / antialias ANTIALIASMAX=20100; * Polygon plot of "Easter egg";
proc sgplot data=egg aspect=1 nowall noborder;
styleattrs backcolor=cxffffe0;
polygon x=y y=x id=id / nooutline fill fillattrs=(color=cxdda0dd) transparency=.4; * Change orientation (x=y, y=x);
yaxis reverse display=(noline noticks novalues) label="HAPPY EASTER!" labelattrs=(size=30pt color=cx40e0D0 weight=bold);
xaxis display=none;
refline .1 to .9 by .1 / lineattrs=(color=cxffffe0 thickness=2pt) axis=y; * Easter egg "stripes";
run;
Awesome!
Awesome!
awesome...loved it.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.