INFO526-DataViz / hw-01-HarshitMehra

0 stars 0 forks source link

Homework 1 Feedback #1

Open Gchism94 opened 1 year ago

Gchism94 commented 1 year ago

Dear Harshit -- Below is the feedback for your assignment. Please review carefully, and stop by office hours if you have any questions about the feedback.


Feedback

Exercise 1: [10 / 10 points]

Exercise 2: [20 / 20 points]

a. [8 / 8 points]

b. [5 / 5 points]

c. [2 / 2 points]

d. [5 / 5 points]

Exercise 3: [20 / 20 points]

a. [2 / 2]

b. [2 / 2]

c. [16 / 16] (2 points each)

Exercise 4: [10 / 10 points]

Exercise 5: [20 / 20 points]

Feedback: The plot looks good, but you did not give me any insight into what each plot tells you about the data.

Overall: [20 / 20 points]

Late penalty

Gchism94 commented 1 year ago

Your submission earns 9.2/10, there are some unresolved issues:

  1. You did not answer these parts of question 3 again: a. What does the following code do? Does it work? Does it make sense? Why/why not?
ggplot(county) +
  geom_point(aes(x = median_edu, y = median_hh_income)) +
  geom_boxplot(aes(x = smoking_ban, y = pop2017))

b. Which of the following two plots makes it easier to compare poverty levels (poverty) across people from different median education levels (median_edu)? What does this say about when to place a faceting variable across rows or columns?

ggplot(county %>% filter(!is.na(median_edu))) + 
  geom_point(aes(x = homeownership, y = poverty)) + 
  facet_grid(median_edu ~ .)
  1. You additionally did not give any narrative on what your plot tells you about the data for exercise 4.

For next time: Your code chunks are rendering really oddly. It seems that you're trying to do all feedback and text inside of code chunks. The purpose of notebooks are to separate code chunks and text. I will not penalize you this time, but next time I will grade this much more strictly.

Gchism94 commented 1 year ago

You've addressed the issues well. Make sure to pay close attention to my additional feedback for HW 02. I will take points off more strictly for these issues next time. You now have full-credit for HW 01.