From 0b109e8c5e5049ac123bc0cc8506e856bcf9d802 Mon Sep 17 00:00:00 2001 From: sprause Date: Wed, 25 Jan 2023 09:18:05 +0100 Subject: [PATCH] tabula rasa --- code/CTCPTC.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 code/CTCPTC.py diff --git a/code/CTCPTC.py b/code/CTCPTC.py new file mode 100644 index 0000000..1935ba2 --- /dev/null +++ b/code/CTCPTC.py @@ -0,0 +1,18 @@ +import os + +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt + +from tqdm import tqdm +from IPython import embed +from pandas import read_csv +from modules.logger import makeLogger +from modules.plotstyle import PlotStyle +from modules.datahandling import flatten +from modules.behaviour_handling import Behavior, correct_chasing_events, event_triggered_chirps + +logger = makeLogger(__name__) +ps = PlotStyle() + +#### Goal: CTC & PTC for each winner and loser and for all winners and loser ####