Student ID: 01312830

What is the demographic distribution of residents’ property types across various age groups in Singapore (2019)?

1. Describe the major data and design challenges faced in accomplishing the task, and how you plan to overcome these challenges with a proposed sketched design. (3 marks)

# Type Description Resolution
1 Design
  • Difficulty in getting initial visualization of gender vs TOD across age groups
  • Facet wrap layout too cluttered and does not offer discernible insights
  • Explore alternative plots e.g. population pyramids
  • Consider using colour gradient scheme to separate TOD instead of having individual plots for each TOD
2 Design / Data
  • Difficulty in distinguishing between each gender within a standard bar plot
  • Both genders get summed up in the same side of the X Axis, thereby providing no distinguishing factor
  • Assign negative values to population count of one gender in order to separate graph into “Left” and “Right” sides
  • Utilize coord_flip() in conjunction with the above
3 Design / Data
  • Default sorting for age bins is out of order
  • E.g. 5-9 is in the middle of the plot
  • Makes it difficult to accurately interpret demographic data on first glance
  • Utilize “mutate” and “factor” from dplyr library in order to manipulate data source label order
4 Design / Data
  • Default scaling for x-axis does not give an accurate representation of the actual numbers of the graph
  • X-axis scale is extremely cluttered and unreadable, labels are cluttered together and hard to interpret
  • Experiment with different x-axis scles using scale_y_continuous attribute

Design Sketch Proposed