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
Joy wrote these in response to a teacher inquiry. We should make them accessible to everyone :)
Categorical Columns
Pie-chart: Are more countries land-locked or not land-locked?
pie-chart(food-table, "landlocked")
Bar-chart: How many more countries are in Europe than are in the Asia-Pacific region?
bar-chart(food-table, "region")
Stacked-bar-chart: What is the distribution of religion across the regions?
stacked-bar-chart(food-table, "region", "rel-maj")
Multi-bar-chart: Which regions produce as much food as they import?
multi-bar-chart(food-table, "region", "food-ind")
Quantitative Columns
Histogram: What is the shape of the percent of land used for agriculture data column?
histogram(food-table, "country", "pct-land-ag", 10)
Box-plot: What is the distribution of the percent of adults who are overweight column?
box-plot(food-table, "pct-ow")
Scatter-plot: Is there a relationship between daily per capita caloric supply and the percent of adults who are overweight?
scatter-plot(food-table, "country", "cal-pc", "pct-ow")
lr-plot: How big of a factor is the daily per capita caloric supply in determining the percent of adults who are overweight?
lr-plot(food-table, "country", "cal-pc", "pct-ow")
The text was updated successfully, but these errors were encountered:
Joy wrote these in response to a teacher inquiry. We should make them accessible to everyone :)
Categorical Columns
Pie-chart: Are more countries land-locked or not land-locked?
pie-chart(food-table, "landlocked")
Bar-chart: How many more countries are in Europe than are in the Asia-Pacific region?
bar-chart(food-table, "region")
Stacked-bar-chart: What is the distribution of religion across the regions?
stacked-bar-chart(food-table, "region", "rel-maj")
Multi-bar-chart: Which regions produce as much food as they import?
multi-bar-chart(food-table, "region", "food-ind")
Quantitative Columns
Histogram: What is the shape of the percent of land used for agriculture data column?
histogram(food-table, "country", "pct-land-ag", 10)
Box-plot: What is the distribution of the percent of adults who are overweight column?
box-plot(food-table, "pct-ow")
Scatter-plot: Is there a relationship between daily per capita caloric supply and the percent of adults who are overweight?
scatter-plot(food-table, "country", "cal-pc", "pct-ow")
lr-plot: How big of a factor is the daily per capita caloric supply in determining the percent of adults who are overweight?
lr-plot(food-table, "country", "cal-pc", "pct-ow")
The text was updated successfully, but these errors were encountered: