|
1 |
| -**ethoscopy** |
| 1 | +# ethoscopy |
2 | 2 |
|
3 |
| -Head to: https://bookstack.lab.gilest.ro/books/ethoscopy for an in-depth tutorial on how to use ethoscopy |
| 3 | +A data-analysis toolbox utilising Pandas, Seaborn, and Plotly to curate, clean, analyse, and visualise behavioural time series data. Whilst the toolbix was created around the data produced from an Ethoscope (a Drosophila monitoring system), if the users data follows the same structure for time series data all methods can be utilised. |
4 | 4 |
|
5 |
| -A data-analysis toolbox utilising the python language for use with data collected from 'Ethoscopes', a Drosophila video monitoring system. |
| 5 | +<del> Head to the [tutorial](https://bookstack.lab.gilest.ro/books/ethoscopy) for an in-depth walk through. </del> |
| 6 | +- currently the above tutorial is out of date. Use the jupyter notebooks to learn how to use the package |
| 7 | +- I promise to update the tutorial soon so it is aligned with the 2.0 version |
6 | 8 |
|
7 |
| -For more information on the ethoscope system: https://www.notion.so/The-ethoscope-60952be38787404095aa99be37c42a27 |
| 9 | +For more information on the Ethoscope system, click [here](https://www.notion.so/The-ethoscope-60952be38787404095aa99be37c42a27) |
| 10 | + - If using in conjenction with Ethoscope data this software contains functions for loading the Ethoscope data into ethocopy from .db files both locally and in remote ftp servers. |
8 | 11 |
|
9 |
| -Ethoscopy is made to work alongside this system, working as a post experiment analysis toolkit. |
| 12 | +At its core ethoscopy is a subclass of the data manipulation tool Pandas. The dataframe object has been altered to contain a linked metadata dataframe which contains experimental information. This secondary dataframe can be used to filter the data containing dataframe, as well as a store of information per specimen during analysis. |
10 | 13 |
|
11 |
| -Ethoscopy provides the tools to download experimental data from a remote ftp servers as setup in ethoscope tutorial above. Downloaded data can be curated during the pipeline in a range of ways, all formatted using the pandas data structure. |
| 14 | +Ethoscopy contains methods to perform common analytical techniques per specimen in the data table, such as removing dead specimens, interpolating missing values, or calculating sleep from movement. Addtionally, specialist anlysing tools have been implemented for analysing circadian rhythm, such as periodograms, and for generating hidden Markov models (HMM) to understand latent behavioural states. HMMs are trained utilising hmmlearn in the background and come accompanied with a range of visualisation tools to understand the generated model. |
12 | 15 |
|
13 |
| -Further the ethoscopy package provides behavpy a subclassed version of pandas that combines metadata with the data for easy manipulation. Behavpy can be used independently of the Ethoscope system data if following the same structure. Within behavpy there are a range of methods to curate your data and then to generate plots using the plotly plotting package. Additionally, there are methods to analyse bout length, contiguous sleep, and many circadian analysis methods including periodograms. |
| 16 | +### -- Update to 2.0 -- |
14 | 17 |
|
15 |
| -Within Behavpy is a wrapped version of the python package hmmlearn, a tool for creating hidden markov models. With the update the user can easy train new HMMs from their data and use bult in methods to create graphs analysing the decoded dataset. |
| 18 | +This new update sees a whole refactoring of the code base to make everything more streamline and keep the package up to date with the new versions of pandas and numpy. Gone are seperate classes for periodograms and HMM based analysis, all are under one class behavpy(). Addtioanlly, now the user can choose between plotter packages, Seaborn and Plotly, and choose a desired colour pallete. The previous used package Plotly can balloon the size of jupyter notebooks, putting a strain on storage, despite being great for data exploration. If you just want static plots, use Seaborn. But be wary of comparison, the backend for Plotly plots is all calculated in ethoscopy applying z-score and bootstrapping to quantification plots, whereas Seaborn based plots will use the Seaborn internal tools for errors and averaging. |
16 | 19 |
|
17 |
| --- Update to 1.3.0 -- |
| 20 | +The latest update is backwards compatible with all previously saved behavpy dataframes. However, post loading they should be re-initiated as the new behavpy class. |
18 | 21 |
|
19 |
| -The latest update now allows the user to choose the colour palette from plotly to be applied to all plotting methods, see the updated tutorial on how to do this. |
20 |
| -Additionally, the .pivot() method has been changed to .analyse_column() to avoid overwriting the original pandas method. Also, puff_mago and find_motifs analysing functions have been renamed to stimulus_response and stimulus_prior respectively. |
| 22 | +Addtionally, the concat method ( behavpy_object.concat() ) for combining dataframes has been shifted to a function that is imported automatically. Call etho.concat(df1, df2) or etho.concat(*[df1, df2]) instead. There are other minor changes to method and argument names, which are reflected in their docstrings and in the tutorial. |
| 23 | + |
| 24 | +## Getting Started |
| 25 | + |
| 26 | +Ethoscopy can be installed via pip from [PyPi](https://pypi.org/project/ethoscopy/) |
| 27 | + |
| 28 | +We recommned installing ethoscopy into a virtual environment due to specific package versions. |
| 29 | + |
| 30 | +```bash |
| 31 | +python pip install ethoscopy |
| 32 | +``` |
| 33 | + |
| 34 | +## Example of use |
| 35 | + |
| 36 | +Ethoscopy is primarily made to work in a Jupyter notebook environment and should be imported in as so: |
| 37 | + |
| 38 | +```bash |
| 39 | +import ethoscopy as etho |
| 40 | +``` |
| 41 | + |
| 42 | +Generate a behavpy dataframe object as so: |
| 43 | + |
| 44 | +```bash |
| 45 | +data = pandas_dataframe |
| 46 | +metadata = pandas_dataframe |
| 47 | + |
| 48 | +df = etho.behavpy(data, metadata, check = True, canvas = 'plotly', palette = 'Set2') |
| 49 | + |
| 50 | +# select only the data from specimens in experimental group 2 |
| 51 | +filtered_df = df.xmv('experimental_column', 'group_2') |
| 52 | +``` |
| 53 | + |
| 54 | +## License |
| 55 | + |
| 56 | +This project is licensed under the [GNU-3 license](LICENSE) |
0 commit comments