ReturnsHeatmapChart
- class qf_lib.plotting.charts.returns_heatmap_chart.ReturnsHeatmapChart(returns: QFSeries, title='Monthly Returns')[source]
Bases:
Chart
Constructs a new monthly returns heatmap chart based on the specified returns.
- Parameters:
returns (QFSeries) – series of daily, weekly or monthly data
Methods:
plot
([figsize])Plots the chart.
- plot(figsize: Optional[Tuple[float, float]] = None)[source]
Plots the chart. The underlying figure stays hidden until the show() method is called.
- Parameters:
figsize (Tuple[float, float]) – The figure size to draw the chart at in inches. This is a tuple of (width, height) passed directly to matplotlib’s
plot
function. The values are expressed in inches.