CobaltZvc commited on
Commit
41e7d83
1 Parent(s): 5d578db

Delete fewshot_plot.txt

Browse files
Files changed (1) hide show
  1. fewshot_plot.txt +0 -9
fewshot_plot.txt DELETED
@@ -1,9 +0,0 @@
1
- Plot a line chart using streamlit st.line_chart() from instructions for the information:
2
-
3
- Request: How many cars were produced each year from 2000 to 2004?
4
- Plot graph for: st.bar_chart(pd.DataFrame({"year_produced": [2000, 2001, 2002, 2003, 2004], "num_cars": [1672, 1845, 1688, 1485, 1358]}))
5
-
6
- Request: How many cars were produced of each color in the year 2004?
7
- Plot graph for: st.bar_chart(pd.DataFrame({"color": ['silver','black','blue','white','green','red','grey','orange','other'], "num": [8,4,6,3,2,1,4,1,9]}))
8
-
9
- Request: