Created
June 2, 2019 15:38
-
-
Save philippjfr/e5c7e5870f7a3f74670e71e55786c575 to your computer and use it in GitHub Desktop.
This file contains 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
ticker = pn.widgets.Select(options=['AAPL', ...]) | |
@pn.depends(ticker.param.value) | |
def plot(ticker): | |
... | |
return plot_obj | |
pn.Row(ticker, plot) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment