TODO: Write a project description
TODO: Describe the installation process
| 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` |
| """ | |
| 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 |