actually shwoing chart

#1
by jfiel5 - opened
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -94,7 +94,7 @@ stroke_width = (
94
  .otherwise(alt.value(0))
95
  )
96
 
97
- alt.Chart(source, height=200).mark_bar(
98
  fill="#4C78A8", stroke="black", cursor="pointer"
99
  ).encode(
100
  x="Parent Institution:O",
@@ -104,5 +104,5 @@ alt.Chart(source, height=200).mark_bar(
104
  strokeWidth=stroke_width,
105
  ).configure_scale(bandPaddingInner=0.2).add_params(select, highlight)
106
 
107
-
108
 
 
94
  .otherwise(alt.value(0))
95
  )
96
 
97
+ chart=alt.Chart(source, height=200).mark_bar(
98
  fill="#4C78A8", stroke="black", cursor="pointer"
99
  ).encode(
100
  x="Parent Institution:O",
 
104
  strokeWidth=stroke_width,
105
  ).configure_scale(bandPaddingInner=0.2).add_params(select, highlight)
106
 
107
+ chart
108