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: README.md
+4
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,10 @@ Transform data and create rich visualizations iteratively with AI 🪄. Try Data
22
22
23
23
## News 🔥🔥🔥
24
24
25
+
-[11-07-2024] Minor fun update: data visualization challenges!
26
+
- We added a few visualization challenges with the sample datasets. Can you complete them all? [[try them out!]](https://github.com/microsoft/data-formulator/issues/53#issue-2641841252)
27
+
- Comment in the issue when you did, or share your results/questions with others! [[comment here]](https://github.com/microsoft/data-formulator/issues/53)
28
+
25
29
-[10-11-2024] Data Formulator python package released!
26
30
- You can now install Data Formulator using Python and run it locally, easily. [[check it out]](#get-started).
27
31
- Our Codespaces configuration is also updated for fast start up ⚡️. [[try it now!]](https://codespaces.new/microsoft/data-formulator?quickstart=1)
{"text": "Create a line chart to show the life expectancy trend of each country over time.", "difficulty": "easy"},
62
+
{"text": "Visualize the top 10 countries with highest life expectancy in 2005.", "difficulty": "medium"},
63
+
{"text": "Find top 10 countries that have the biggest difference of life expectancy in 1955 and 2005.", "difficulty": "hard"},
64
+
{"text": "Rank countries by their average population per decade. Then only show countries with population over 50 million in 2005.", "difficulty": "hard"}
65
+
]},
66
+
{"name": "income", "challenges": [
67
+
{"text": "Create a line chart to show the income trend of each state over time.", "difficulty": "easy"},
68
+
{"text": "Only show washington and california's percentage of population in each income group each year.", "difficulty": "medium"},
69
+
{"text": "Find the top 5 states with highest percentage of high income group in 2016.", "difficulty": "hard"}
70
+
]},
71
+
{"name": "disasters", "challenges": [
72
+
{"text": "Create a scatter plot to show the number of death from each disaster type each year.", "difficulty": "easy"},
73
+
{"text": "Filter the data and show the number of death caused by flood or drought each year.", "difficulty": "easy"},
74
+
{"text": "Create a heatmap to show the total number of death caused by each disaster type each decade.", "difficulty": "hard"},
75
+
{"text": "Exclude 'all natural disasters' from the previous chart.", "difficulty": "medium"}
76
+
]},
77
+
{"name": "movies", "challenges": [
78
+
{"text": "Create a scatter plot to show the relationship between budget and worldwide gross.", "difficulty": "easy"},
79
+
{"text": "Find the top 10 movies with highest profit after 2000 and visualize them in a bar chart.", "difficulty": "easy"},
80
+
{"text": "Visualize the median profit ratio of movies in each genre", "difficulty": "medium"},
81
+
{"text": "Create a scatter plot to show the relationship between profit and IMDB rating.", "difficulty": "medium"},
82
+
{"text": "Turn the above plot into a heatmap by bucketing IMDB rating and profit, color tiles by the number of movies in each bucket.", "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"},
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
+
{"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