bw
Plots box and whisker plots
Source Code: [link]
openbb.qa.bw(data: pd.DataFrame, target: str, symbol: str = "", yearly: bool = True, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Name of dataset | True | |
data | pd.DataFrame | Dataframe to look at | None | False |
target | str | Data column to look at | None | False |
yearly | bool | Flag to indicate yearly accumulation | True | 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.bw(data=df, target="Adj Close")