14 KiB
14 KiB
Exercise: Compute summary statistics for the neural data¶
In [2]:
%matplotlib inline
import matplotlib.pyplot as plt
import pandas as pd
# Set some Pandas options: maximum number of rows/columns it's going to display
pd.set_option('display.max_rows', 1000)
pd.set_option('display.max_columns', 100)
Load the processed neural data¶
In [3]:
df = pd.read_csv('processed_QC_passed_2024-07-04_collected_v1.csv')
In [4]:
df.shape
Out[4]:
In [5]:
df.head()
Out[5]:
1. Does capacitance change with age?¶
- Compute the capacitance by patient age, and plot it
- Does it change with age? (eyeballing is enough)
In [ ]:
2. Spiking threshold after potassium incubation¶
- Does the spiking threshold (TH) change between Day 1 and Day 2?
- Does this result depend on the treatment?
In [ ]: