https://github.com/AllenInstitute/ecephys_spike_sorting
Tip revision: 919992748a5324724ba87169ecdcf9eb6e3b9973 authored by Josh Siegle on 18 August 2024, 22:52:23 UTC
Merge pull request #91 from jingjie-li/master
Merge pull request #91 from jingjie-li/master
Tip revision: 9199927
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()