专栏名称: 经管之家
经管之家官微,每个经济、管理、金融、统计的学习和从业者,都应该有的帐号。经管之家(论坛),是国内成立十年的大型经济、金融、管理、计量统计社区,十年磨一剑,我们共同的家园!我们提供“经管爱问”答疑微服务,以及相关数据分析及金融培训课程。
目录
相关文章推荐
第一财经  ·  刚刚,上海宣布:取消! ·  昨天  
股市荀策  ·  【海通策略】全球市场流动性周观察 ·  昨天  
白日梦想家大A  ·  陈小群悄悄晒账户盈亏;川哥:61路一直在干! ·  5 天前  
白日梦想家大A  ·  陈小群悄悄晒账户盈亏;川哥:61路一直在干! ·  5 天前  
有限次重复博弈  ·  如何从 Web ... ·  6 天前  
51好读  ›  专栏  ›  经管之家

2.14情人节高段位“撩妹心计”!高逼格5大统计软件勇表「单身汪」心迹

经管之家  · 公众号  · 财经  · 2017-02-14 09:29

正文

1分钟看点速读


论坛君:尽管笛卡尔和瑞典公主的故事已被证实只是杜撰,但因这个故事出名的心形函数被广为流传。今天又是一个虐单身狗的日子,面对各种毫无新意的表白方式,让我们来看看理工科式的表白~


来源经管之家综合自网络



一切都是从一个故事开始的:



1650年,斯德哥尔摩街头,一个宁静的午后,笛卡尔邂逅了18岁的瑞典公主克里斯汀。

机遇巧合,一段纯粹、美好的爱情悄然萌发。


然而,没过多久,他们的恋情传到了国王的耳朵里。国王大怒,将笛卡尔放逐,而公主被软禁在宫中。 身体孱弱的笛卡尔不久便染上重病,在生命进入倒计时的那段日子,他日夜思念的还是街头偶遇的那张温暖的笑脸。他每天坚持给她写信,盼望着她的回音。然而,这些信都被国王拦截下来。在笛卡尔给克里斯汀寄出第十三封信后,他永远地离开了这个世界。此时,被软禁在宫中的小公主依然徘徊在皇宫的走廊里,思念着远方的情人。


这最后一封信上没有写一句话,只有一个方程:r=a(1-sinθ) ——传说中著名的心形函数。






不过,事实告诉我们,除非你的目标妹子也是一只Geeker(至少会用Mathematica或者MATLAB等软件),否则像笛卡尔这样单给一个函数的结局大概就是你推公式别人推妹子了……表白什么的还是选择更浅显易懂的方法吧。


接下来看看用各种数据分析软件做出的心形模型,保证亮瞎你的表白对象!



 Stata 



在这个特殊的日子里,特意搜集了利用Stata绘制心形线的程序,代码如下:



clear
range t 0 2*_pi 1000
gen x=16*sin(t)^3
gen y=13*cos(t)-5*cos(2*t)-2*cos(3*t)-cos(4*t)
egen x_min=min(x)
egen x_max=max(x)
egen y_min=min(y)
egen y_max=max(y)
gen a=(x-x_min)/(x_max-x_min)
gen b=(y-y_min)/(y_max-y_min)
line b a
gr_edit yaxis1.draw_view.setstyle, style(no)
gr_edit xaxis1.draw_view.setstyle, style(no)
gr_edit plotregion1.AddTextBox added_text editor .7055394244311991 .2810707216715078
gr_edit plotregion1.added_text_new = 1
gr_edit plotregion1.added_text_rec = 1
gr_edit plotregion1.added_text[1].style.editstyle  angle(default) size(medsmall) color(red) horizontal(left) vertical(middle) margin(zero) linegap(zero) drawbox(no) boxmargin(zero) fillcolor(bluishgray) linestyle( width(thin) color(red) pattern(solid)) box_alignment(east) editcopy
gr_edit plotregion1.added_text[1].style.editstyle size(large) editcopy
gr_edit plotregion1.added_text[1].text = {}
gr_edit plotregion1.added_text[1].text.Arrpush  "           I LOVE YOU"
graph export "C:\Desktop\520.png", as(png) wid(800)hei(600) replace



以下为输出结果:





以上程序基于stata12运行,如果有stata14的话,还可以输入中文!祝大家好运!



 R 



接下来是R绘制心形线,代码如下:



1)加加载程序包
library(grid)

2)绘制心形函数
heart
 t=seq(0, 2*pi, by=0.1)
 x=16*sin(t)^3
 y=13*cos(t)-5*cos(2*t)-2*cos(3*t)-cos(4*t)
 a=(x-min(x))/(max(x)-min(x))
 b=(y-min(y))/(max(y)-min(y))
 grid.lines(a,b,gp=gpar(col=lcolor,lty = "solid",lwd = 6))
}
heart("hotpink")

grid.newpage()


3)绘制玫瑰函数
rose=function(){
 grid.circle(x=0.5, y=0.5, r=0.5,gp=gpar(fill="red",lwd = 3))
 vp
 pushViewport(vp)
 grid.polygon(x=c(0.08, .5, 0.94),y=c(.22, 1.03, .22),gp=gpar(lwd =
 vp2
 pushViewport(vp2)
 grid.circle(x=0.5, y=0.5, r=0.5,gp=gpar(fill="red",lwd = 3))
 vp3
 pushViewport(vp3)
 grid.polygon(x=c(0.08, .5, 0.94),y=c(.22, 1.03, .22),gp=gpar(lwd = 3))}
rose()

4)调整图形
grid.newpage()
pushViewport(viewport(x=0.1, y=0.1,w=0.2, h=0.2))
grid.newpage()
for (j in 1:30) {
 vp
 pushViewport(vp)
 heart("hotpink")
}

5)调整图形及添加文字
grid.newpage()
vp1
pushViewport(vp1)
heart("red")
vp2
pushViewport(vp2)
heart("hotpink")
grid.text("执手偕老",
         x=0.2,y =1.2, just = c("center", "bottom"),
         gp = gpar(fontsize=30), vp = vp)
vp3
pushViewport(vp3)
rose()



结果如下:



注:操作平台为Rstudio,由于手头电脑没有装R,所以上述程序没有验证,就交给大家自己实践了!祝好运!




以上程序来自:

http://mp.weixin.qq.com/s?__biz=MzA4NTAyMjQ2Mg==&mid=206788501&idx=1&sn=53e07723fdb395a787e57ea53bffd332&scene=21#wechat_redirect



 Matlab 



利用matlab抱得美人归:



f=@(x,y,z) x.^2.*z.^3+9*y.^2.*z.^3/80-(x.^2+9*y.^2/4+z.^2-1).^3;%心形曲面函数
[x,y,z]=meshgrid(-1.5:0.1:1.5);%画图范围
v=f(x,y,z);
%画图
h=patch(isosurface(x,y,z,v,0));
isonormals(x,y,z,v,h)
set(h,'FaceColor','r','EdgeColor','none');
title('Programmed By Dylan Wang')
alpha(0.6)   
grid off;
axis([-1.5 1.5 -1.5 1.5 -1.5 1.5])
lighting Gouraud
h = camlight('left');
for i = 1:180;%水平旋转照相机
        camorbit(1,0)
        camlight(h,'left');
        drawnow;
end


效果如斯:






 SAS 




1)准备心形图的图形数据 




data heart;
length side $ 8;
pi=constant('PI');
do t=0 to 60 by 100/200;
x = -.01*(-t**2+40*t+1200)*sin(pi*t/180);
y = .01*(-t**2+40*t+1200)*cos(pi*t/180);
side='left';
output;
side='right';
x=-1*x;
output;
end;
run;



2)准备图形上的文字



这个最重要,字一定要大,而且千万记得署上自己的名字。过年的时候收到几条没有署名的祝福短信,郁闷的我也不知道该怎么问人家名字。

data anno;
input textsize y1 function :$8. label $40.;
retain drawspace "GRAPHPERCENT"
function "text"
width 80
widthunit 'percent'
textcolor "black"
textweight "bold";
cards;
20 50 text 5.20  我爱你!
15 45 text 经管之家
;
run;

3)画图
 
ods listing;
ods graphics / width=600px height=600px noborder;

proc sgplot data=heart sganno=anno noautolegend;

title "Heart";

series x=x y=y /group=side lineattrs=(color=red);
xaxis display=none;
yaxis display=none;
run;quit;



用SAS画曲线有多种方式:



1)用ScatterPlot画图是最自然的方式,不过需要10000个点心形图看上去才比较舒服。因为曲线的边有些锯齿,所以我不太喜欢。
 
2)用Series画图,这个需要点技巧。对数据不做特殊处理的话,画出来的是这样,不过也很美很特别。



Heart



3)我建议大家动手试试其他的语句,比如pbsplineplot,会有各种惊喜。







为了能出下面这个心形图,我特意加了side变量,然后通过lineattrs=(color=red)强行将两组数据用红色画线,而不是默认的一蓝一红。 





Do you love SAS? Yes, I DO.(行动才是爱!)




 Python 



爱心的python表示:


1.第一种


"""
'17*x^2 - 16*|x|*y + 17*y^2 = 225'
"""
 
import numpy as np
import matplotlib.pyplot as plt
 
X = np.arange(-5.0, 5.0, 0.1)
Y = np.arange(-5.0, 5.0, 0.1)
 
x, y = np.meshgrid(X, Y)
f = 17 * x ** 2 - 16 * np.abs(x) * y + 17 * y ** 2 - 225
 
fig = plt.figure()
cs = plt.contour(x, y, f, 0, colors = 'r')
plt.show()




2.第二种


"""
'(x^2+y^2+y)^2 = x^2 + y^2'
"""
import numpy as np
import matplotlib.pyplot as plt
 
X = np.arange(-2.0, 2.0, 0.05)
Y = np.arange(-2.0, 2.0, 0.05)
 
x, y = np.meshgrid(X, Y)
f = (x ** 2 + y ** 2 + y) ** 2 - x ** 2 - y ** 2
 
fig = plt.figure()
cs = plt.contour(x, y, f, 0, colors = 'r')
plt.show()




3.第三种


"""
'8*x^2 - 9*|x|*y + 8*y^2 = 17'
"""
import numpy as np
import matplotlib.pyplot as plt
 
X = np.arange(-2.5, 2.5, 0.05)
Y = np.arange(-2.5, 2.5, 0.05)
 
x, y = np.meshgrid(X, Y)
f = 8 * x ** 2 - 9 * np.abs(x) * y + 8 * y ** 2 - 17
fig = plt.figure()
cs = plt.contour(x, y, f, 0, colors = 'r')




4.第四种


"""
'(x^2 + y^2 - 1)^3 - x^2*y^3 = 0'
"""
import numpy as np
import matplotlib.pyplot as plt
import math
X = np.arange(-2.0, 2.0, 0.05)
Y = np.arange(-2.0, 2.0, 0.05)
 
x, y = np.meshgrid(X, Y)
 
f = (x ** 2 + y ** 2 - 1) ** 2 * (x ** 2 + y ** 2 - 1)- x ** 2 *  y ** 2 * y
fig = plt.figure()
cs = plt.contour(x, y, f, 0, colors = 'r')
plt.show()




最后,感谢那些做出巨大贡献的程序猿,没有他们的代码,表白怎能如此风骚!!!