tools and fixes

This commit is contained in:
Jan Kieseler
2024-09-10 09:06:13 +02:00
parent 1289cd6f0c
commit 85b344d134
2 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -1 +1,2 @@
minicalo.cpython-38-x86_64-linux-gnu.so minicalo.cpython-38-x86_64-linux-gnu.so
tmp_test*
+6 -1
View File
@@ -397,4 +397,9 @@ def display_event(gd : GeometryDescriptor,
if renderer is not None: if renderer is not None:
fig.show(renderer=renderer) fig.show(renderer=renderer)
else: else:
fig.show() fig.show()
def to_numpy(df_column):
return np.array(df_column.tolist())