gradient_aware_harmonisation.plotting#
Helper functions
Functions:
| Name | Description |
|---|---|
plotting |
Plot the target, original and interpolated timeseries |
plotting #
plotting(
harmonisee_timeseries: Timeseries,
target_timeseries: Timeseries,
interpolated_timeseries: Timeseries,
harmonisation_time: Union[int, float],
convergence_time: Optional[Union[int, float]],
) -> None
Plot the target, original and interpolated timeseries
We expect these to have been computed with
harmonise.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
harmonisee_timeseries
|
Timeseries
|
Harmonisee timeseries (i.e. the timeseries we want to harmonise) |
required |
target_timeseries
|
Timeseries
|
Target timeseries (i.e. what we harmonise to) |
required |
interpolated_timeseries
|
Timeseries
|
Harmonised timeseries as returned by
|
required |
harmonisation_time
|
Union[int, float]
|
Time point at which harmonisee should be matched to the target |
required |
convergence_time
|
Optional[Union[int, float]]
|
Time point at which the harmonised data should converge towards the prediced data. |
required |