Skip to content

Instantly share code, notes, and snippets.

@kuchaale
kuchaale / detrending_test-dask-final.ipynb
Last active March 3, 2017 09:46
detrending_test-dask-final.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kuchaale
kuchaale / xa_ttest.py
Created April 19, 2017 13:01
xarray version of two-sided t-test
import xarray.ufuncs as xrf
from scipy import stats
import xarray as xr
def ttest_1samp(a, popmean, dim):
"""
This is a two-sided test for the null hypothesis that the expected value
(mean) of a sample of independent observations `a` is equal to the given
population mean, `popmean`
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kuchaale
kuchaale / interpolation_w_dask.ipynb
Created July 3, 2017 14:44
interpolation_w_dask.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kuchaale
kuchaale / aggregation_of_adjacent_points.ipynb
Created August 4, 2017 23:58
Aggregation of areas with adjacent_points
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kuchaale
kuchaale / correlation_with_dask-EHFvsSPV.ipynb
Created August 10, 2017 10:03
correlation_with_dask-EHFvsSPV.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kuchaale
kuchaale / README.md
Created August 14, 2017 09:57 — forked from zenorocha/README.md
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage

@kuchaale
kuchaale / pysom.py
Created August 14, 2017 14:11 — forked from TakuTsuzuki/pysom.py
SOM
"""
pysom.py is a python script for self-organizing map (SOM).
"""
import numpy as np
import matplotlib.pyplot as plt
# learning paras.
loop = 1000 # def: 1000
alpha_base = 1.0 # def: 1.0
@kuchaale
kuchaale / issue_example.ipynb
Created September 6, 2017 18:26
issue_example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.