|
3 | 3 | from ethoscopy.behavpy_seaborn import behavpy_seaborn
|
4 | 4 |
|
5 | 5 | def behavpy(data, meta, palette = None, long_palette = None, check = False, index= None, columns=None, dtype=None, copy=True, canvas='plotly'):
|
| 6 | + """ |
| 7 | + Factory function that creates a behavpy object with the specified visualisation backend. |
| 8 | +
|
| 9 | + The behavpy class extends pandas DataFrame to provide specialised functionality for handling and analysing |
| 10 | + behavioural data from ethoscope experiments. It maintains a link between experimental data and corresponding |
| 11 | + metadata, with methods for data manipulation, analysis, and visualisation. |
| 12 | +
|
| 13 | + Args: |
| 14 | + data (pd.DataFrame): Experimental data, typically loaded via load_ethoscope(). Must contain: |
| 15 | + - 'id' column with unique specimen IDs |
| 16 | + - 't' column with timestamps in seconds |
| 17 | + meta (pd.DataFrame): Metadata containing experimental conditions, genotypes etc. Must have: |
| 18 | + - One row per unique specimen ID |
| 19 | + - IDs matching those in the data DataFrame |
| 20 | + palette (str, optional): Color palette name for visualizations with ≤11 groups. |
| 21 | + Defaults to 'Safe' for Plotly and 'deep' for Seaborn. |
| 22 | + long_palette (str, optional): Color palette name for visualizations with >11 groups. |
| 23 | + Defaults to 'Dark24' for Plotly and 'deep' for Seaborn. |
| 24 | + check (bool, optional): If True, validates that all data IDs exist in metadata and removes |
| 25 | + redundant columns from link_meta_index. Defaults to False. |
| 26 | + index (pd.Index, optional): Index to use for the DataFrame. Defaults to None. |
| 27 | + columns (pd.Index, optional): Column labels to use for the DataFrame. Defaults to None. |
| 28 | + dtype (np.dtype, optional): Data type to force. Defaults to None. |
| 29 | + copy (bool, optional): Copy data from inputs. Defaults to True. |
| 30 | + canvas (str, optional): Visualisation backend to use - 'plotly', 'seaborn', or None. Defaults to 'plotly'. |
| 31 | +
|
| 32 | + Returns: |
| 33 | + behavpy_core: A behavpy object with methods for manipulating, analysing and plotting |
| 34 | + time series behavioural data, using the specified visualisation backend. |
| 35 | +
|
| 36 | + Raises: |
| 37 | + ValueError: If an invalid canvas type is specified. |
| 38 | + """ |
6 | 39 |
|
7 | 40 | if canvas == 'plotly':
|
8 | 41 |
|
|
0 commit comments