funcnodes-span 0.3.3__tar.gz → 0.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/PKG-INFO +1 -1
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/__init__.py +1 -1
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/peak_analysis.py +5 -1
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/pyproject.toml +1 -1
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/LICENSE +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/README.md +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/_baseline.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/_curves.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/_smoothing.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/baseline.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/curves.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/fitting.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/normalization.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/peaks.py +0 -0
- {funcnodes_span-0.3.3 → funcnodes_span-0.3.4}/funcnodes_span/smoothing.py +0 -0
|
@@ -362,8 +362,9 @@ def plot_peaks(
|
|
|
362
362
|
peak.x_at_f_index,
|
|
363
363
|
peak.x_at_f_index,
|
|
364
364
|
peak.x_at_i_index,
|
|
365
|
+
peak.x_at_i_index,
|
|
365
366
|
],
|
|
366
|
-
y=[plot_y_min, plot_y_min, peak_height, peak_height],
|
|
367
|
+
y=[plot_y_min, plot_y_min, peak_height, peak_height, plot_y_min],
|
|
367
368
|
fill="toself" if fill_rectangles else None,
|
|
368
369
|
fillcolor=peaks_colors[index % len(peaks_colors)]
|
|
369
370
|
if fill_rectangles
|
|
@@ -413,6 +414,9 @@ def plot_peaks(
|
|
|
413
414
|
plot_bgcolor="white",
|
|
414
415
|
paper_bgcolor="white",
|
|
415
416
|
showlegend=show_legend,
|
|
417
|
+
font=dict(family="Arial", size=14),
|
|
418
|
+
xaxis=dict(title_font=dict(size=16), tickfont=dict(size=14)),
|
|
419
|
+
# yaxis=dict(title_font=dict(size=16), tickfont=dict(size=14), tickformat=".2e"),
|
|
416
420
|
)
|
|
417
421
|
|
|
418
422
|
return fig
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|