https://github.com/AllenInstitute/ecephys_spike_sorting
Tip revision: 3855129747b905d24f2812d7ae00d9419e49dfa7 authored by Josh Siegle on 25 July 2019, 19:29:55 UTC
Update batch plotting
Update batch plotting
Tip revision: 3855129
helloworld.py
"""
Example
=================================
One-line description
"""
import matplotlib.pyplot as plt
import numpy as np
x = 'hello_world'
########################################
# This is rendered text, and will break apart a notebook cell
y = 'foo'
print(x)
plt.plot(np.random.rand(100), np.random.rand(100), 'b.')
plt.show()