hist
Plots histogram of data
Source Code: [link]
openbb.qa.hist(data: pd.DataFrame, target: str, symbol: str = "", bins: int = 15, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | Dataframe to look at | None | False |
target | str | Data column to get histogram of the dataframe | None | False |
symbol | str | Name of dataset | True | |
bins | int | Number of bins in histogram | 15 | 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.hist(data=df, target="Adj Close")