Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Mar 1, 2024
1 parent ca04d93 commit 6940892
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CLUEstering/CLUEstering.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,9 +712,9 @@ def input_plotter(self, plot_title: str='', title_size: float = 16,
if self.clust_data.n_dim >= 3:
fig = plt.figure()
ax_ = fig.add_subplot(projection='3d')
ax_.scatter(cartesian_coords.T[0],
cartesian_coords.T[1],
cartesian_coords.T[2],
ax_.scatter(cartesian_coords[0],
cartesian_coords[1],
cartesian_coords[2],
s=pt_size,
color=pt_colour)

Expand Down Expand Up @@ -912,7 +912,7 @@ def to_csv(self, output_folder: str, file_name: str) -> None:

if __name__ == "__main__":
c = clusterer(0.4,5,1.)
c.read_data('./sissa.csv')
c.read_data('./blob.csv')
c.input_plotter()
c.run_clue(backend="cpu serial", verbose=True)
# c.run_clue(backend="cpu tbb", verbose=True)
Expand Down

0 comments on commit 6940892

Please sign in to comment.