Created
May 28, 2022 17:13
-
-
Save alexhallam/d4fa6d3b9086d06ace75ea2874faba1a to your computer and use it in GitHub Desktop.
show apple data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import tablespoon as tbsp | |
from tablespoon.data import APPL | |
from mizani.breaks import date_breaks | |
from plotnine import * | |
from datetime import datetime | |
# make date string a date object | |
df_APPLE = APPL | |
df_APPLE = df_APPLE.assign(ds = lambda df: pd.to_datetime(df.ds)) | |
df_APPLE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment