You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
211 B
Python

# %%
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_parquet("1.pq")
df2 = df.iloc[:140]
ax = plt.axes(projection="3d")
ax.scatter(df2["r_x"], df2["r_y"], df2["r_z"])
plt.show()
plt.pause(0.1)