Skip to content

Commit 212fb6c

Browse files
committed
.
1 parent 71b78c4 commit 212fb6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

behavior_data_visualizer/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def update_session_dropdown(selected_value):
145145
if selected_value is None:
146146
return []
147147
df = mouse_data_dict[selected_value]
148-
session_data_dict = utils.get_dicctionary_of_dates(df)
148+
session_data_dict = utils.get_diccionary_of_dates(df)
149149
return [{'label': key, 'value': session_data_dict[key]} for key in session_data_dict.keys()]
150150

151151
# Figure for the session summary
@@ -159,7 +159,7 @@ def update_session_summary(mouse, session):
159159
return ''
160160
df = mouse_data_dict[mouse]
161161
sdf = df[df["year_month_day"] == session]
162-
fig = fm.session_summary_figure(sdf, mouse, perf_window=100)
162+
fig = fm.session_summary_figure(sdf, mouse, perf_window=25)
163163
return utils.fig_to_uri(fig)
164164

165165
return app

0 commit comments

Comments
 (0)