Skip to content

Commit

Permalink
Fix last discrepancy between load lims df and cloud df.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Oct 28, 2023
1 parent f2484b7 commit 7562e3c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,11 @@ def get_ophys_session_table(self) -> pd.DataFrame:
subset=["ophys_session_id"],
keep=False
)
# Make date time explicitly UTC.
table["date_of_acquisition"] = pd.to_datetime(
table["date_of_acquisition"],
utc=True
)

# Fill NaN values of imaging_plane_group_count with zero to match
# the behavior of the BehaviorOphysExperiment object.
Expand Down

0 comments on commit 7562e3c

Please sign in to comment.