Plots
Plots over time
# If wrapped is True each specimens data will be aggregated to one 24 day before being aggregated as a whole. If you want to view each day seperately, keep wrapped False.
# A moving average is applied to the data with a window of 30 (30 mins if your time delta is 60 seconds). This can be changed with the parameter avg_window
df.plot_overtime(
variable = 'moving',
wrapped = True,
avg_window = 30
)
# the plots will show the mean with 95% confidence intervals in a lighter colour around the mean
Quantifying the above

Last updated