Jesus Sanchez commited on
Commit
e3db0ce
·
1 Parent(s): 8b29af4

add circle mark

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ def parse_into_chart(response: str):
55
  return response
56
 
57
  data = response.split(":")[1]
58
- return alt.Chart(data)
59
 
60
 
61
 
 
55
  return response
56
 
57
  data = response.split(":")[1]
58
+ return alt.Chart(data).mark_circle()
59
 
60
 
61