You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: py-src/data_formulator/app.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ def get_example_dataset_list():
59
59
example_datasets= [
60
60
{"name": "gapminder", "challenges": [
61
61
{"text": "Create a line chart to show the life expectancy trend of each country over time.", "difficulty": "easy"},
62
-
{"text": "What's the 10 countries with highest life expectancy in 2005?", "difficulty": "medium"},
62
+
{"text": "Visualize the top 10 countries with highest life expectancy in 2005.", "difficulty": "medium"},
63
63
{"text": "Find top 10 countries that have the biggest difference of life expectancy in 1955 and 2005.", "difficulty": "hard"},
64
64
{"text": "Rank countries by their average population per decade. Then only show countries with population over 50 million in 2005.", "difficulty": "hard"}
{"text": "Create a scatter plot to show the relationship between unemployment rate and year.", "difficulty": "easy"},
86
-
{"text": "Create a line chart to show the average unemployment per year for each industry", "difficulty": "medium"},
86
+
{"text": "Create a line chart to show the average unemployment per year for each industry.", "difficulty": "medium"},
87
87
{"text": "Find the 5 most stable industries (least change in unemployment rate between 2000 and 2010) and visualize their trend over time using line charts.", "difficulty": "medium"},
88
88
{"text": "Create a bar chart to show the unemployment rate change between 2000 and 2010, and highlight the top 5 most stable industries with least change.", "difficulty": "hard"}
0 commit comments