Skip to content

Commit

Permalink
animation print bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGeorge1234 committed Mar 14, 2024
1 parent 1390c86 commit 9215933
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion ratinabox/Agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,6 @@ def plot_trajectory(
trajectory = history_data["pos"][slice]
head_direction = history_data["head_direction"][slice]
t_start_, t_end_ = time[0], time[-1]
print("t_start_:", t_start_)



Expand Down
5 changes: 3 additions & 2 deletions ratinabox/Neurons.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ def plot_rate_map(
"""
#Set kwargs (TODO make lots of params accessible here as kwargs)
spikes_color = kwargs.get("spikes_color", self.color) or "C1"
color = kwargs.pop("color", self.color) or "C1"
bin_size = kwargs.get("bin_size", 0.04) #only relevant if you are plotting by method="history"


Expand Down Expand Up @@ -405,7 +406,7 @@ def plot_rate_map(
if self.color is None:
coloralpha = None
else:
coloralpha = list(matplotlib.colors.to_rgba(self.color))
coloralpha = list(matplotlib.colors.to_rgba(color))
coloralpha[-1] = 0.5

chosen_neurons = self.return_list_of_neurons(chosen_neurons=chosen_neurons)
Expand Down Expand Up @@ -578,7 +579,7 @@ def plot_rate_map(

if method != "neither":
fig, ax = utils.mountain_plot(
X=x, NbyX=rate_maps, color=self.color, nan_bins=zero_bins, fig=fig, ax=ax, **kwargs
X=x, NbyX=rate_maps, color=color, nan_bins=zero_bins, fig=fig, ax=ax, **kwargs
)

if spikes is True:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ratinabox
version = 1.12.2
version = 1.12.4
author = Tom George
author_email = [email protected]
project_urls =
Expand Down

0 comments on commit 9215933

Please sign in to comment.