Skip to content
Snippets Groups Projects
Commit 6a7afe3d authored by marc131183's avatar marc131183
Browse files

changed tankpositions, to avoid future warning

parent 2a9ddb37
No related branches found
No related tags found
No related merge requests found
Pipeline #36201 failed
...@@ -321,7 +321,7 @@ def evaluate_tankpositions(paths, names=None, save_path=None, predicate=None): ...@@ -321,7 +321,7 @@ def evaluate_tankpositions(paths, names=None, save_path=None, predicate=None):
ax[i].set_xlim(-world_bounds[i][0] / 2, world_bounds[i][0] / 2) ax[i].set_xlim(-world_bounds[i][0] / 2, world_bounds[i][0] / 2)
ax[i].set_ylim(-world_bounds[i][1] / 2, world_bounds[i][1] / 2) ax[i].set_ylim(-world_bounds[i][1] / 2, world_bounds[i][1] / 2)
sns.kdeplot(x_pos[i], y_pos[i] * (-1), n_levels=25, shade=True, ax=ax[i]) sns.kdeplot(x=x_pos[i], y=y_pos[i] * (-1), n_levels=25, shade=True, ax=ax[i])
if save_path is None: if save_path is None:
plt.show() plt.show()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment