Visualising your data
Viewing your data
# first load your data and create a behavpy instance of it
df.display()Summary statistics
Visualising your data
Heatmaps

Last updated
# first load your data and create a behavpy instance of it
df.display()
Last updated
df.summary()
# an example output of df.summary()
output:
behavpy table with:
individuals 675
metavariable 9
variables 13
measurements 3370075
# add the argument detailed = True to get information per fly
df.summary(detailed = True)
output:
data_points time_range
id
2019-08-02_14-21-23_021d6b|01 5756 86400 -> 431940
2019-08-02_14-21-23_021d6b|02 5481 86400 -> 431940
# Enter the column name of any variable in the data table
# the default variable argument is 'moving' but can be used for any numerical or boolean variable from the data
df.heatmap(variable = 'moving')