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
Generates a plot to explore the response rate to a stimulus per hidden state from a Hidden markov Model. Y-axis is the average response rate per group / state / True or mock interactions
2366
+
Generates a plot to explore the response rate to a stimulus per hidden state from a Hidden markov Model.
2367
+
Y-axis is the average response rate per group / state / True or mock interactions
2368
+
2366
2369
2367
2370
Args:
2368
2371
mov_df (behavpy dataframe): The matching behavpy dataframe containing the movement data from the response experiment
2369
-
hmm (hmmlearn.hmm.CategoricalHMM): The accompanying trained hmmlearn model to decode the data.
2370
-
variable (str, optional): The name of column that is to be decoded by the HMM. Default is 'moving'.
2371
-
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'.
2372
-
labels (list[string], optional): A list of the names of the decoded states, must match the number of states in the given model and colours.
2373
-
If left as None and the model is 4 states the names will be ['Deep Sleep', 'Light Sleep', 'Quiet Awake', 'Active Awake'], else it will be ['state_0', 'state_1', ...]. Default is None
2374
-
colours (list[string], optional): A list of colours for the decoded states, must match length of labels. If left as None and the
2375
-
model is 4 states the colours will be ['Dark Blue', 'Light Blue', 'Red', 'Dark Red'], else it will be the colour palette choice. Default is None.
2372
+
hmm (hmmlearn.hmm.CategoricalHMM): This should be a trained HMM Learn object with the
2373
+
correct hidden states and emission states for your dataset
2374
+
variable (str, optional): The column heading of the variable of interest. Default is "moving"
2375
+
response_col (str, optional): The name of the coloumn that has the responses per interaction.
2376
+
Must be a column of bools. Default is 'has_responded'.
2377
+
labels (list[str], optional): The names of the different states present in the hidden markov model.
2378
+
If None the labels are assumed to be ['Deep sleep', 'Light sleep', 'Quiet awake', 'Full awake'] if a 4 state model.
2379
+
If None and not 4 states then generic labels are generated, i.e. 'state-1, state-2, state-n'.
2380
+
Default is None.
2381
+
colours (list[str/RGB], optional): The name of the colours you wish to represent the different states, must be the same length as labels.
2382
+
If None the colours are by default for 4 states (blue and red), if not 4 then colours from the palette are chosen.
2383
+
It accepts a specific colour or an array of numbers that are acceptable to Seaborn. Default is None.
2376
2384
facet_col (str, optional): The name of the column to use for faceting, must be from the metadata. Default is None.
2377
-
facet_arg (list, optional): The arguments to use for faceting. If None then all distinct groups will be used. Default is None.
2378
-
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.
2379
-
t_bin (int, optional): The time in seconds to bin the time series data to. Default is 60,
2380
-
func (str, optional): When binning the time what function to apply the variable column. Default is 'max'.
2385
+
facet_arg (list, optional): The arguments to use for faceting. If None then all distinct groups will be used.
2386
+
Default is None.
2387
+
facet_labels (list, optional): The labels to use for faceting, these will be what appear on the plot.
2388
+
If None the labels will be those from the metadata. Default is None.
2389
+
t_bin (int, optional): The time in seconds you want to bin the movement data to. Default is 60 or 1 minute
2390
+
col_uniform (bool, optional): Unique to the plotly version of this method.
2391
+
When True the colour scheme is based on the states and not the faceted column.
2392
+
When false the colour palette is used instead as in the Seaborn version. Default is False.
2393
+
func (str, optional): When binning to the above what function should be applied to the grouped data.
2394
+
Default is "max" as is necessary for the "moving" variable.
2395
+
z_score (bool, optional): If True (Default) the z-score for each entry is found the those above/below zero are removed.
2396
+
Default is True.
2381
2397
title (str, optional): The title of the plot. Default is an empty string.
2382
2398
t_column (str, optional): The name of column containing the timing data (in seconds). Default is 't'
2383
-
col_uniform (bool, optional): Unique to the plotly version of this method. When True the true interaction response is coloured by the
2384
-
state colour choice even with multiple groups. When false the colour palette is used instead as in the Seaborn version. Default is True.
2385
-
grids (bool, optional): true/false whether the resulting figure should have grids. Default is False
2399
+
grids (bool, optional): true/false whether the resulting figure should have grids. Default is False.
2386
2400
2387
2401
Returns:
2388
-
returns a plotly figure object
2389
-
2402
+
fig (plotly.figure.Figure): Figure object of the plot.
2403
+
Raises:
2404
+
KeyError:
2405
+
If a column for the respones is not a column.
2406
+
Multiple assertion of ValueErrors and KeyErrors in regards to faceting and HMM lists
2390
2407
Note:
2391
2408
This function must be called on a behavpy dataframe that is populated by data loaded in with the stimulus_response
0 commit comments