IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    Open repo of ecological data for use in teaching

    Bluecology blog发表于 2025-06-10 00:00:00
    love 0
    [This article was first published on Bluecology blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
    Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

    Open repo of ecological data for use in teaching

    Just a quick announcement. I’ve organized and posted two ecological datasets that I find helpful for creating examples for teaching. The repo and instructions for use and attribution are on github:

    https://github.com/cbrown5/example-ecological-data

    There are two sets of data posted, each with multiple flat csv files.

    One is field survey data of benthic habitats and fish. Useful for data wrangling of site survey data, multivariate community analysis and GLMs with count data

    The second is experimental data of algal growth under multiple stressors. Useful for teaching missing data, plotting trends over time and analysing interacting effects with GLMs.

    All data can be downloaded directly into R like this:

    benthic_cover_url <- "https://raw.githubusercontent.com/cbrown5/example-ecological-data/refs/heads/main/data/benthic-reefs-and-fish/benthic_cover.csv"
    
    library(readr)
    dat <- read_csv(benthic_cover_url)
    write_csv(dat, "benthic_cover.csv")
    
    To leave a comment for the author, please follow the link and comment on their blog: Bluecology blog.

    R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
    Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
    Continue reading: Open repo of ecological data for use in teaching


沪ICP备19023445号-2号
友情链接