下記のような感じで、特定の月のみのプロットが可能になる。
import seaborn as sns %matplotlib inline stock_code: str = '7974' df = cli.get_prices_daily_quotes(f'{stock_code}0') df.index = df['Date'] sns.lineplot('Date', 'AdjustmentClose', data=df['2022-08'])
下記のような感じで、特定の月のみのプロットが可能になる。
import seaborn as sns %matplotlib inline stock_code: str = '7974' df = cli.get_prices_daily_quotes(f'{stock_code}0') df.index = df['Date'] sns.lineplot('Date', 'AdjustmentClose', data=df['2022-08'])
(C) 2020 dogwood008 禁無断転載 不許複製 Reprinting, reproducing are prohibited.