├── .gitignore ├── README.md ├── comp ├── 2016-07-12-fft_time.html ├── 2016-07-12-fft_time.ipynb ├── craigslist_data_analysis.ipynb ├── craigslist_scrape.ipynb ├── nih_grant_analysis │ ├── data │ │ └── nih_nrsa_success_rates.xls │ └── nih_grant_analysis.ipynb └── time_frequency_tradeoff.ipynb ├── data ├── README.md └── science_is_awesome.wav ├── matplotlib ├── data │ ├── bay_area_rentals.csv │ ├── dessert.png │ ├── don.png │ ├── stations.txt │ └── tips.csv ├── diagonal_histogram.ipynb └── plotting_in_python.ipynb ├── misc ├── 10_min_to_tables.ipynb ├── blogging_in_wordpress_with_jupyter_notebooks.ipynb └── funnel_plots.ipynb ├── mne ├── .ipynb_checkpoints │ └── mne_events_epochs-checkpoint.ipynb ├── mne_clickable_image.ipynb ├── mne_custom_arrays.ipynb ├── mne_custom_layout.ipynb └── mne_events_epochs.ipynb ├── neuro ├── coherence_correlation │ ├── coherence_correlation.ipynb │ └── img │ │ └── eeg_coh.png ├── ecog │ ├── Background.ipynb │ ├── Data exploration.ipynb │ ├── Encoding Models.ipynb │ └── Signal Processing and Time Frequency.ipynb └── test_trisurf_plotly │ ├── surface │ ├── lh.pial │ ├── mni_surface.h5 │ └── rh.pial │ └── test_plotly_surface_plots.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/README.md -------------------------------------------------------------------------------- /comp/2016-07-12-fft_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/2016-07-12-fft_time.html -------------------------------------------------------------------------------- /comp/2016-07-12-fft_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/2016-07-12-fft_time.ipynb -------------------------------------------------------------------------------- /comp/craigslist_data_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/craigslist_data_analysis.ipynb -------------------------------------------------------------------------------- /comp/craigslist_scrape.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/craigslist_scrape.ipynb -------------------------------------------------------------------------------- /comp/nih_grant_analysis/data/nih_nrsa_success_rates.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/nih_grant_analysis/data/nih_nrsa_success_rates.xls -------------------------------------------------------------------------------- /comp/nih_grant_analysis/nih_grant_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/nih_grant_analysis/nih_grant_analysis.ipynb -------------------------------------------------------------------------------- /comp/time_frequency_tradeoff.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/comp/time_frequency_tradeoff.ipynb -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | A place to store data for notebooks 2 | -------------------------------------------------------------------------------- /data/science_is_awesome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/data/science_is_awesome.wav -------------------------------------------------------------------------------- /matplotlib/data/bay_area_rentals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/data/bay_area_rentals.csv -------------------------------------------------------------------------------- /matplotlib/data/dessert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/data/dessert.png -------------------------------------------------------------------------------- /matplotlib/data/don.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/data/don.png -------------------------------------------------------------------------------- /matplotlib/data/stations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/data/stations.txt -------------------------------------------------------------------------------- /matplotlib/data/tips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/data/tips.csv -------------------------------------------------------------------------------- /matplotlib/diagonal_histogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/diagonal_histogram.ipynb -------------------------------------------------------------------------------- /matplotlib/plotting_in_python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/matplotlib/plotting_in_python.ipynb -------------------------------------------------------------------------------- /misc/10_min_to_tables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/misc/10_min_to_tables.ipynb -------------------------------------------------------------------------------- /misc/blogging_in_wordpress_with_jupyter_notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/misc/blogging_in_wordpress_with_jupyter_notebooks.ipynb -------------------------------------------------------------------------------- /misc/funnel_plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/misc/funnel_plots.ipynb -------------------------------------------------------------------------------- /mne/.ipynb_checkpoints/mne_events_epochs-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/mne/.ipynb_checkpoints/mne_events_epochs-checkpoint.ipynb -------------------------------------------------------------------------------- /mne/mne_clickable_image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/mne/mne_clickable_image.ipynb -------------------------------------------------------------------------------- /mne/mne_custom_arrays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/mne/mne_custom_arrays.ipynb -------------------------------------------------------------------------------- /mne/mne_custom_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/mne/mne_custom_layout.ipynb -------------------------------------------------------------------------------- /mne/mne_events_epochs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/mne/mne_events_epochs.ipynb -------------------------------------------------------------------------------- /neuro/coherence_correlation/coherence_correlation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/coherence_correlation/coherence_correlation.ipynb -------------------------------------------------------------------------------- /neuro/coherence_correlation/img/eeg_coh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/coherence_correlation/img/eeg_coh.png -------------------------------------------------------------------------------- /neuro/ecog/Background.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/ecog/Background.ipynb -------------------------------------------------------------------------------- /neuro/ecog/Data exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/ecog/Data exploration.ipynb -------------------------------------------------------------------------------- /neuro/ecog/Encoding Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/ecog/Encoding Models.ipynb -------------------------------------------------------------------------------- /neuro/ecog/Signal Processing and Time Frequency.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/ecog/Signal Processing and Time Frequency.ipynb -------------------------------------------------------------------------------- /neuro/test_trisurf_plotly/surface/lh.pial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/test_trisurf_plotly/surface/lh.pial -------------------------------------------------------------------------------- /neuro/test_trisurf_plotly/surface/mni_surface.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/test_trisurf_plotly/surface/mni_surface.h5 -------------------------------------------------------------------------------- /neuro/test_trisurf_plotly/surface/rh.pial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/test_trisurf_plotly/surface/rh.pial -------------------------------------------------------------------------------- /neuro/test_trisurf_plotly/test_plotly_surface_plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/neuro/test_trisurf_plotly/test_plotly_surface_plots.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/write-ups/HEAD/requirements.txt --------------------------------------------------------------------------------