-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Add Chart To
econometrics.correlation_matrix
(#6750)
* add chart to correlation matrix * lint * handling for data.results without chart --------- Co-authored-by: Igor Radovanovic <[email protected]>
- Loading branch information
1 parent
737e5d4
commit c58b567
Showing
9 changed files
with
301 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
openbb_platform/extensions/econometrics/openbb_econometrics/econometrics_views.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
"""Views for the Econometrics Extension.""" | ||
|
||
from typing import TYPE_CHECKING, Any | ||
|
||
if TYPE_CHECKING: | ||
from openbb_charting.core.openbb_figure import ( | ||
OpenBBFigure, | ||
) | ||
|
||
|
||
class EconometricsViews: | ||
"""Econometrics Views.""" | ||
|
||
@staticmethod | ||
def econometrics_correlation_matrix( # noqa: PLR0912 | ||
**kwargs, | ||
) -> tuple["OpenBBFigure", dict[str, Any]]: | ||
"""Correlation Matrix Chart. | ||
Parameters | ||
---------- | ||
data : Union[list[Data], DataFrame] | ||
Input dataset. | ||
method : Literal["pearson", "kendall", "spearman"] | ||
Method to use for correlation calculation. Default is "pearson". | ||
pearson : standard correlation coefficient | ||
kendall : Kendall Tau correlation coefficient | ||
spearman : Spearman rank correlation | ||
colorscale : str | ||
Plotly colorscale to use for the heatmap. Default is "RdBu". | ||
title : str | ||
Title of the chart. Default is "Asset Correlation Matrix". | ||
layout_kwargs : Dict[str, Any] | ||
Additional keyword arguments to apply with figure.update_layout(), by default None. | ||
""" | ||
# pylint: disable=import-outside-toplevel | ||
from openbb_charting.charts.correlation_matrix import correlation_matrix | ||
|
||
return correlation_matrix(**kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
openbb_platform/obbject_extensions/charting/openbb_charting/charts/correlation_matrix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
"""Correlation Matrix Chart.""" | ||
|
||
from typing import TYPE_CHECKING, Any, Union | ||
|
||
if TYPE_CHECKING: | ||
from plotly.graph_objs import Figure # noqa | ||
from openbb_charting.core.openbb_figure import OpenBBFigure # noqa | ||
|
||
|
||
def correlation_matrix( # noqa: PLR0912 | ||
**kwargs, | ||
) -> tuple[Union["OpenBBFigure", "Figure"], dict[str, Any]]: | ||
"""Correlation Matrix Chart.""" | ||
# pylint: disable=import-outside-toplevel | ||
from numpy import ones_like, triu # noqa | ||
from openbb_core.app.utils import basemodel_to_df # noqa | ||
from openbb_charting.core.openbb_figure import OpenBBFigure | ||
from openbb_charting.core.chart_style import ChartStyle | ||
from plotly.graph_objs import Figure, Heatmap, Layout | ||
from pandas import DataFrame | ||
|
||
if "data" in kwargs and isinstance(kwargs["data"], DataFrame): | ||
corr = kwargs["data"] | ||
elif "data" in kwargs and isinstance(kwargs["data"], list): | ||
corr = basemodel_to_df(kwargs["data"], index=kwargs.get("index", "date")) # type: ignore | ||
else: | ||
corr = basemodel_to_df( | ||
kwargs["obbject_item"], index=kwargs.get("index", "date") # type: ignore | ||
) | ||
if ( | ||
"symbol" in corr.columns | ||
and len(corr.symbol.unique()) > 1 | ||
and "close" in corr.columns | ||
): | ||
corr = corr.pivot( | ||
columns="symbol", | ||
values="close", | ||
) | ||
|
||
method = kwargs.get("method") or "pearson" | ||
corr = corr.corr(method=method, numeric_only=True) | ||
|
||
X = corr.columns.to_list() | ||
x_replace = X[-1] | ||
Y = X.copy() | ||
y_replace = Y[0] | ||
X = [x if x != x_replace else "" for x in X] | ||
Y = [y if y != y_replace else "" for y in Y] | ||
mask = triu(ones_like(corr, dtype=bool)) | ||
df = corr.mask(mask) | ||
title = kwargs.get("title") or "Asset Correlation Matrix" | ||
text_color = "white" if ChartStyle().plt_style == "dark" else "black" | ||
colorscale = kwargs.get("colorscale") or "RdBu" | ||
heatmap = Heatmap( | ||
z=df, | ||
x=X, | ||
y=Y, | ||
xgap=1, | ||
ygap=1, | ||
colorscale=colorscale, | ||
colorbar=dict( | ||
orientation="v", | ||
x=0.9, | ||
y=0.45, | ||
xanchor="left", | ||
yanchor="middle", | ||
len=0.75, | ||
bgcolor="rgba(0,0,0,0)" if text_color == "white" else "rgba(255,255,255,0)", | ||
), | ||
text=df.fillna(""), | ||
texttemplate="%{text:.4f}", | ||
hoverinfo="skip", | ||
) | ||
layout = Layout( | ||
title=title, | ||
title_x=0.5, | ||
title_y=0.95, | ||
xaxis=dict( | ||
showgrid=False, | ||
showline=False, | ||
ticklen=0, | ||
tickfont=dict(size=16), | ||
ticklabelstandoff=10, | ||
domain=[0.05, 1], | ||
), | ||
yaxis=dict( | ||
showgrid=False, | ||
side="left", | ||
autorange="reversed", | ||
showline=False, | ||
ticklen=0, | ||
tickfont=dict(size=16), | ||
ticklabelstandoff=15, | ||
domain=[0.05, 1], | ||
), | ||
margin=dict(r=20, t=0, b=50), | ||
dragmode=False, | ||
) | ||
fig = Figure(data=[heatmap], layout=layout) | ||
figure = OpenBBFigure(fig=fig) | ||
figure.update_layout( | ||
font=dict(color=text_color), | ||
paper_bgcolor=( | ||
"rgba(0,0,0,0)" if text_color == "white" else "rgba(255,255,255,0)" | ||
), | ||
plot_bgcolor=( | ||
"rgba(0,0,0,0)" if text_color == "white" else "rgba(255,255,255,0)" | ||
), | ||
) | ||
layout_kwargs = kwargs.get("layout_kwargs", {}) | ||
|
||
if layout_kwargs: | ||
figure.update_layout(**layout_kwargs) | ||
|
||
content = figure.show(external=True).to_plotly_json() # type: ignore | ||
|
||
return figure, content |