Package fieldpy :: Package core :: Module experiment_classes :: Class LoggedData
[hide private]
[frames] | no frames]

Class LoggedData

source code


Parent class for all kinds of logged data, be it by hand or by logger (i.e. time series). So, LoggedData are looked at as simple, i.e. there is only very minimal data processing to be done to get the data, definitely not a compound of several experiments, use ExperimentData.

Instance Methods [hide private]
 
__init__(self)
Sets up the basic structure
source code
 
check(self)
Does integrity checks, should be invoced at the end of __init__ of the children classes.
source code

Inherited from extra_classes.TimeSeries: check_constant_sampling_interval, check_monotonically_inc_time, cut_time_series, filter_and_resample, get_ind, get_ind_as_slice, get_index_after, get_index_before, get_index_nearest, integrate, plot_date, plot_ts, time_filter_gauss

Inherited from extra_classes.Data: filter_by_freq, filter_low_pass, mask_if_true, mask_jumps, mask_jumps_one_dir, mask_value, pickle

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]

Inherited from extra_classes.Data: data, md

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Sets up the basic structure

Overrides: object.__init__
(inherited documentation)

check(self)

source code 

Does integrity checks, should be invoced at the end of __init__ of the children classes.

Overrides: extra_classes.Data.check

To Do: check that units are given.