Skip to content

Commit

Permalink
Save homes, closes #120
Browse files Browse the repository at this point in the history
  • Loading branch information
mine-cetinkaya-rundel committed Sep 4, 2022
1 parent 61ba362 commit 02238e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion 04-foundations/01-lesson/04-01-lesson.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ soda <- data.frame(
)
homeown_perm <- read_rds("data/homeown_perm.rds")
homes <- NHANES %>%
select(Gender, HomeOwn) %>%
filter(HomeOwn %in% c("Own", "Rent"))
```


Expand Down Expand Up @@ -571,7 +575,7 @@ homes <- NHANES %>%
filter(HomeOwn %in% c("Own", "Rent"))
```

(2)
(2)

- Find the observed difference in proportions of men who own and women who own, by carrying out the following steps:
1. Using the `homes` dataset, group by `Gender`.
Expand Down

0 comments on commit 02238e8

Please sign in to comment.