qqplot
Plots QQ plot for data against normal quantiles
Source Code: [link]
openbb.qa.qqplot(data: pd.DataFrame, target: str, symbol: str = "", external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | Dataframe | None | False |
target | str | Column in data to look at | None | False |
symbol | str | Stock ticker | True | |
external_axes | bool | Whether to return the figure object or not, by default False | False | True |
Returns
This function does not return anything
Examples
from openbb_terminal.sdk import openbb
df = openbb.stocks.load("AAPL")
openbb.qa.qqplot(data=df, target="Adj Close")