regular backup
This commit is contained in:
parent
c85b19ec44
commit
79cbda037e
1995
Example.ipynb
1995
Example.ipynb
File diff suppressed because one or more lines are too long
@ -63,10 +63,12 @@ def combine_uncertainty(value, std, dask='parallelized', **kwargs):
|
||||
def _seperate_uncertainty_single(data):
|
||||
return data.n, data.s
|
||||
|
||||
|
||||
def _seperate_uncertainty(data):
|
||||
func = np.vectorize(_seperate_uncertainty_single)
|
||||
return func(data)
|
||||
|
||||
|
||||
def seperate_uncertainty(data, dask='parallelized', **kwargs):
|
||||
|
||||
kwargs.update(
|
||||
@ -91,6 +93,7 @@ def get_scanAxis(dataSet):
|
||||
|
||||
return res
|
||||
|
||||
|
||||
def print_scanAxis(dataSet):
|
||||
scanAxis = dataSet.scanAxis
|
||||
|
||||
@ -119,4 +122,12 @@ def calculate_std(dataSet):
|
||||
if 'runs' in dataSet.dims:
|
||||
return dataSet.mean(dim='runs')
|
||||
else:
|
||||
return None
|
||||
return None
|
||||
|
||||
|
||||
def extract_temperature_from_fit():
|
||||
pass
|
||||
|
||||
|
||||
def extract_condensate_fraction_from_fit():
|
||||
pass
|
Loading…
Reference in New Issue
Block a user