You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A plotting function for AGO or mAGO datasets that have been loaded with the analysing function stimulus_response.
1270
-
A plot to view the response rate to a puff over the time of day. Interactions will be binned to a users input (default is 1 hour) and plotted over a ZT hours x-axis. The plot can be the full length of an experiment or wrapped to a singular day.
""" A plotting function for AGO or mAGO datasets that have been loaded with the analysing function stimulus_response.
1269
+
Generate a plot which shows how the response response rate changes over a day (wrapped) or the course of the experiment.
1270
+
If false stimuli are given and represented in the interaction_id column, they will be plotted seperately.
1271
1271
1272
1272
Args:
1273
-
bin_time (int, optional): The number of hours you want to bin the response rate to, default is 1 (hour).
1273
+
t_bin_hours (int, optional): The number of hours you want to bin the response rate to per specimen. Default is 1 (hour).
1274
1274
wrapped (bool, optional): If true the data is augmented to represent one day, combining data of the same time on consequtive days.
1275
-
num_dtick (int, optional): The dtick for the x-axis (the number spacing) for when plot_type 'number is chosen. Default is 10.
1276
-
response_col (str, optional): The name of the column that contains the boolean response data.
1277
-
int_id_col (str, optional): The name of the column conataining the id for the interaction type, which should be either 1 (true interaction) or 2 (false interaction). Default 'has_interacted'.
1275
+
response_col (str, optional): The name of the coloumn that has the responses per interaction. Must be a column of bools. Default is 'has_responded'.
1276
+
interaction_id_col (str, optional): The name of the column conataining the id for the interaction type, which should be either 1 (true interaction) or 2 (false interaction). Default 'has_interacted'.
1278
1277
facet_col (str, optional): The name of the column to use for faceting, must be from the metadata. Default is None.
1279
1278
facet_arg (list, optional): The arguments to use for faceting. If None then all distinct groups will be used. Default is None.
1280
1279
facet_labels (list, optional): The labels to use for faceting, these will be what appear on the plot. If None the labels will be those from the metadata. Default is None.
1281
-
title (str, optional): The title of the plot. Default is an empty string.
1282
1280
day_length (int, optional): The lenght in hours the experimental day is. Default is 24.
1283
1281
lights_off (int, optional): The time point when the lights are turned off in an experimental day, assuming 0 is lights on. Must be number between 0 and day_lenght. Default is 12.
1284
-
sceondary (bool, optional): If true then a secondary y-axis is added that contains either the puff cound for 'time' or percentage of flies recieving the puff in 'number'. Default is True
1285
-
t_column (str, optional): The name of column containing the timing data (in seconds). Default is 't'
1282
+
func (str, optional): When binning the time what function to apply the variable column. Default is 'max'.
1283
+
t_column (str, optional): The name of column containing the timing data (in seconds). Default is 't'.
1284
+
title (str, optional): The title of the plot. Default is an empty string.
1286
1285
grids (bool, optional): true/false whether the resulting figure should have grids. Default is False
1287
-
1286
+
1288
1287
Returns:
1289
1288
fig (plotly.figure.Figure): Figure object of the plot.
0 commit comments