plot_phase¶
yohou.plotting.signal.plot_phase(df, *, columns=None, unwrap=True, angle_unit='radian', groups=None, facet_by='member', facet_n_cols=2, color_palette=None, show_legend=True, title=None, x_label=None, y_label=None, width=None, height=None, connect_gaps=False, line_width=2.0)
¶
Plot the phase of a time series.
Shows the phase angle of each frequency component computed via FFT. Useful for understanding temporal alignment of periodic patterns.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame with 'time' column and numeric columns. |
required |
columns
|
str | list[str] | None
|
Column(s) to analyze. If None, uses all numeric columns except 'time'. |
None
|
unwrap
|
bool
|
Unwrap phase angles to avoid discontinuities at :math: |
True
|
angle_unit
|
Literal['degree', 'radian']
|
Unit for the phase angle axis. |
"radian"
|
groups
|
list[str] | None
|
Panel group prefixes to plot. |
None
|
facet_by
|
Literal['group', 'member'] | None
|
Faceting axis for panel data. |
"member"
|
facet_n_cols
|
int
|
Number of columns in facet grid. |
2
|
color_palette
|
list[str] | None
|
Custom color palette. |
None
|
show_legend
|
bool
|
Whether to show the legend. |
True
|
title
|
str | None
|
Plot title. |
None
|
x_label
|
str | None
|
X-axis label. Defaults to "Frequency (cycles/sample)". |
None
|
y_label
|
str | None
|
Y-axis label. Defaults to "Phase (radians)" or "Phase (degrees)". |
None
|
width
|
int | None
|
Plot width in pixels. |
None
|
height
|
int | None
|
Plot height in pixels. |
None
|
connect_gaps
|
bool
|
Whether to connect gaps in the data with lines. |
False
|
line_width
|
float
|
Width of the line traces. |
2.0
|
Returns¶
| Type | Description |
|---|---|
Figure
|
Plotly figure object. |
Examples¶
>>> t = np.arange(100)
>>> y = np.sin(2 * np.pi * 0.1 * t) + 0.5 * np.sin(2 * np.pi * 0.25 * t)
>>> df = pl.DataFrame({
... "time": pl.date_range(pl.date(2020, 1, 1), pl.date(2020, 4, 9), "1d", eager=True),
... "y": y,
... })
See Also¶
plot_spectrum : Plot power spectral density.
Source Code¶
Show/Hide source
31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 | |
Tutorials¶
The following example notebooks use this component:
-
How to Visualize Signal Processing
Visualization
Butterworth low-pass filtering with frequency spectrum analysis and phase shift inspection on half-hourly electricity demand data using Plotly.