शुरू करेंमुफ़्त में शुरू करें

Customizing ggplot2 visualizations of ACS data

While the ggplot2 defaults are excellent for exploratory visualization of data, you'll likely want to customize your charts before sharing them with others. In this exercise, you'll customize your tidycensus dot plot by modifying the chart colors, tick labels, and axis labels. You'll also learn how to format labels using the scales package, as label formatters can be imported using the :: syntax.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Analyzing US Census Data in R

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Set dot color and size
g_color <- ___(ne_income, aes(x = estimate, y = reorder(NAME, estimate))) + 
  geom_point(color = ___, ___ = 4)
कोड संपादित करें और चलाएँ