line
Display line plot of data
Source Code: [link]
openbb.qa.line(data: pd.Series, title: str = "", log_y: bool = True, markers_lines: Optional[List[datetime.datetime]] = None, markers_scatter: Optional[List[datetime.datetime]] = None, export: str = "", sheet_name: Optional[str] = None, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.Series | Data to plot | None | False |
title | str | Title for plot | True | |
log_y | bool | Flag for showing y on log scale | True | True |
markers_lines | Optional[List[datetime]] | List of dates to highlight using vertical lines | None | True |
markers_scatter | Optional[List[datetime]] | List of dates to highlight using scatter | None | True |
sheet_name | str | Optionally specify the name of the sheet the data is exported to. | None | True |
export | str | Format to export data | 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.line(data=df["Adj Close"])