Skip to content

Commit 478d51b

Browse files
committed
feat(io): change script
1 parent 15e3d49 commit 478d51b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

script/multiplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
random.seed(0)
2020

2121
elements = []
22-
nb_elements = 5000
22+
nb_elements = 500
2323
available_colors = ["purple", "Blue", "green", "red", "Yellow", "Cyan", "rose"]
2424
directions = ['north', 'south', 'west', 'east']
2525
for i in range(nb_elements):

script/plot_scatter.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@
6666

6767
# Now, here is the new scatterplot
6868
plot_data_object = plot_data.Scatter(x_variable='mass', y_variable='length',
69-
point_style=point_style,
70-
elements=elements,
71-
points_sets=points_sets,
72-
axis=axis,
73-
tooltip=tooltip,
74-
heatmap=heatmap)
69+
point_style=point_style,
70+
elements=elements,
71+
points_sets=points_sets,
72+
axis=axis,
73+
tooltip=tooltip,
74+
heatmap=heatmap)
7575

7676
# if local is True, set it to False
7777
plot_data.plot_canvas(plot_data_object=plot_data_object, local=True)

0 commit comments

Comments
 (0)