我是Symfony 3.4的新手,我尝试将文档嵌入到另一个文档中,如下所示:
{
name:"alex",
age: 18,
schoolGrades:{
elementary: "yes",
highScholl: "yes",
college: "no"
}
}
我正在使用Doctrine ODM进行此操作,但是我不知道该怎么做。
答案 0 :(得分:1)
有一个嵌入式文档概念可以完全做到这一点:
slope, b = np.polyfit(m[1], m[0], 1)
x = np.arange(min(m[0]), max(m[0]), 1)
y_line = slope*x + b
slope2 = np.mean(m[1])/np.mean(m[0])
y_line2 = slope2*x + b
plt.plot(x, y_line, color='r')
plt.plot(x, y_line2, color='g')
theta_rad = -np.arctan(slope2)