Skip to content
Snippets Groups Projects
Commit b85ba67f authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

prettier now

parent f9393939
No related branches found
No related tags found
No related merge requests found
plots/treeplot.png

58 KiB | W: | H:

plots/treeplot.png

402 KiB | W: | H:

plots/treeplot.png
plots/treeplot.png
plots/treeplot.png
plots/treeplot.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -8,16 +8,23 @@ pos = np.loadtxt("../data/data.txt")
x = pos[:,2]
y = pos[:,3]
maxCoordinate = np.max(np.abs(pos[:,2:4]))
size = 1.5
fig, ax = plt.subplots()
# ax.scatter(tree[:,0], tree[:,1], color='r', s=0.1)
ax.scatter(x, y, color='b', edgecolor="none", s=1)
ax.scatter(x, y, color='b', edgecolor="none", s=0.33)
ax.set_xlim(-4/3*size, 4/3*size)
ax.set_ylim(-size, size)
ax.set_xlabel("x")
ax.set_ylabel("y")
ax.set_aspect('equal')
for i in range(tree.shape[0]):
size = tree[i,3]
ax.add_patch(Rectangle((tree[i,0] - size, tree[i,1] - size), 2*size, 2*size, linewidth=1, edgecolor='k', facecolor='none', alpha=0.5))
ax.add_patch(Rectangle((tree[i,0] - size, tree[i,1] - size), 2*size, 2*size, linewidth=0.67, edgecolor='k', facecolor='none', alpha=0.5))
# ax.text(tree[i,0], tree[i,1], str(tree[i,4]), fontsize=8, horizontalalignment='center', verticalalignment='center')
ax.set_aspect('equal')
plt.savefig("treeplot.png", dpi=300)
plt.show()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment