continuous_timeseries.timeseries_discrete#
Definition of a discrete timeseries (TimeseriesDiscrete)
This class defines our representation of discrete time series.
It is designed to be compatible with the
Timeseries
and TimeseriesContinuous.
classes.
The idea is that we have a simple, lightweight container
for handling discrete timeseries (what most people are used to).
However, there are then relatively straight-forward methods
for converting to continuous views i.e. TimeseriesContinuous.
Classes:
| Name | Description |
|---|---|
TimeseriesDiscrete |
Discrete time series representation |
TimeseriesDiscrete #
Discrete time series representation
Methods:
| Name | Description |
|---|---|
__str__ |
Get string representation of self |
plot |
Plot the data |
to_continuous_timeseries |
Convert to |
values_at_bounds_validator |
Validate the received values |
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Name of the timeseries |
time_axis |
TimeAxis
|
Time axis of the timeseries |
values_at_bounds |
ValuesAtBounds
|
Values at the bounds defined by |
Source code in src/continuous_timeseries/timeseries_discrete.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | |
values_at_bounds
class-attribute
instance-attribute
#
values_at_bounds: ValuesAtBounds = field()
Values at the bounds defined by self.time_axis
Must hold values that are the same length as self.time_axis.
plot #
plot(
label: str | None = None,
ax: Axes | None = None,
warn_if_plotting_magnitudes: bool = True,
**kwargs: Any,
) -> Axes
Plot the data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label
|
str | None
|
Label to use when plotting the data. If not supplied, we use the |
None
|
ax
|
Axes | None
|
Axes on which to plot. If not supplied, a set of axes will be created. |
None
|
warn_if_plotting_magnitudes
|
bool
|
Should a warning be raised if the units of the values are not considered while plotting? |
True
|
**kwargs
|
Any
|
Keyword arguments to pass to |
{}
|
Returns:
| Type | Description |
|---|---|
Axes
|
Axes on which the data was plotted |
Source code in src/continuous_timeseries/timeseries_discrete.py
to_continuous_timeseries #
to_continuous_timeseries(
interpolation: InterpolationOption,
warn_if_output_values_at_bounds_could_confuse: bool = True,
check_change_func: Callable[
[PINT_NUMPY_ARRAY, PINT_NUMPY_ARRAY], None
] = assert_allclose,
) -> TimeseriesContinuous
Convert to TimeseriesContinuous
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interpolation
|
InterpolationOption
|
Interpolation to use for the conversion |
required |
warn_if_output_values_at_bounds_could_confuse
|
bool
|
Should a warning be raised if the |
True
|
check_change_func
|
Callable[[PINT_NUMPY_ARRAY, PINT_NUMPY_ARRAY], None]
|
Function to use to check
if the value of the output at If the values are different, this function should raise an |
assert_allclose
|
Returns:
| Type | Description |
|---|---|
TimeseriesContinuous
|
Continuous representation of |
Source code in src/continuous_timeseries/timeseries_discrete.py
values_at_bounds_validator #
values_at_bounds_validator(
attribute: Attribute[Any], value: ValuesAtBounds
) -> None
Validate the received values