Skip to content

Instantly share code, notes, and snippets.

@dradecic
Created August 25, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dradecic/04c0e24e9eb5116091f6849c34d229ee to your computer and use it in GitHub Desktop.
Save dradecic/04c0e24e9eb5116091f6849c34d229ee to your computer and use it in GitHub Desktop.
Python-Bokeh - Gist 11 - Redraw
def redraw(p_class):
survived_chart = survived_bar_chart(df, p_class)
title_chart = class_titles_bar_chart(df, p_class)
hist_age = age_hist(df, p_class)
return (
survived_chart,
title_chart,
hist_age
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment