dss-ialh / dss-blogs

Communication portal of Data Science Studio at the Institute of Aging and Lifelong Health
GNU General Public License v3.0
1 stars 0 forks source link

florida demographi growth post ready #26

Closed andkov closed 4 years ago

andkov commented 4 years ago

The post is ready for review. You can see the post on my website http://andriy.rbind.io/post/2020-03-27-florida-demographic-growth/

andkov commented 4 years ago

Consider formatting this block

identical(bind_cols(gapminder[, 1:3], gapminder[, 5:6], gapminder[, 4]),
          as_tibble(cbind(gapminder[, 1:3], gapminder[, 5:6], gapminder[, 4]))) #the main difference is that bind_rows returns a tibble

for a better readability:

identical(
  bind_cols(
    gapminder[, 1:3]
    ,gapminder[, 5:6]
    ,gapminder[, 4]
  )
  ,as_tibble(
    cbind(
      gapminder[, 1:3]
      ,gapminder[, 5:6]
      ,gapminder[, 4]
    )
  )
)
andkov commented 4 years ago

Consider integrating the diagrams to help the readers to conceptualize the graphs from https://r4ds.had.co.nz/relational-data.html

huttoncp commented 4 years ago

Thanks for the feedback Andriy. I suppose it's fine to use them and just link to the source.