https://github.com/AllenInstitute/ecephys_spike_sorting
Tip revision: 7e567a6fc3fd2fc0eedef750b83b8b8a0d469544 authored by Josh Siegle on 08 October 2021, 16:09:25 UTC
Merge pull request #69 from celelion/master
Merge pull request #69 from celelion/master
Tip revision: 7e567a6
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()