Skip to content

Instantly share code, notes, and snippets.

View neuromusic's full-sized avatar
🏜️
Living the dream

Justin Kiggins neuromusic

🏜️
Living the dream
View GitHub Profile
@neuromusic
neuromusic / napari-plugins.ipynb
Created March 17, 2021 20:18
script to pull napari plugin info from pypi
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neuromusic
neuromusic / mode.py
Created October 2, 2018 04:36
pure python mode
def mode(vals):
unique = set(vals)
unique, counts = zip(*((v,vals.count(v)) for v in unique))
return unique[counts.index(max(counts))]
@neuromusic
neuromusic / argmax.py
Created October 1, 2018 17:30
pure python argmax
def argmax(vals):
return max(
range(len(vals)),
key = lambda ii: vals[ii],
)
@neuromusic
neuromusic / nwbviz_example.py
Last active September 4, 2018 19:42
example of nwb viz library API
from nwbviz import view, option
@view(requirements='DfOverF')
def rastermap(nwbfile):
""" Generates a sorted raster map of calcium data
https://github.com/MouseLand/rastermap
Parameters:
@neuromusic
neuromusic / Joy Division plot of Allen Brain Observatory.ipynb
Created June 25, 2018 01:37
Joy Division plot of Allen Brain Observatory
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neuromusic
neuromusic / read_ophys.ipynb
Created April 5, 2018 21:01
reading from nwb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@neuromusic
neuromusic / calcium+to+nwb.ipynb
Created April 4, 2018 21:24
calcium+visual_stimuli=nwb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.