Last active
May 7, 2020 09:04
-
-
Save databyjp/dd0e4291261a23693374e976701e709f to your computer and use it in GitHub Desktop.
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
| fig = px.scatter(total_ticker_df, | |
| x='date', y='close', color='sym', template='plotly_white', title='Sample Stock Price Graphs', | |
| facet_col='sym', facet_col_wrap=3 | |
| ) | |
| fig.update_traces(mode='lines') | |
| fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment