biol827_biological_statistics

Code for BIOL 827 class at UNK.

https://github.com/jacobccooper/biol827_biological_statistics

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic links in README
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (0.4%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Code for BIOL 827 class at UNK.

Basic Info
  • Host: GitHub
  • Owner: jacobccooper
  • Language: JavaScript
  • Default Branch: main
  • Size: 44.9 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed 11 months ago
Metadata Files
Citation

Owner

  • Name: Jacob C. Cooper
  • Login: jacobccooper
  • Kind: user
  • Location: Lawrence, KS, USA
  • Company: University of Kansas

IRACDA Postdoctoral Fellow at the University of Kansas

Citation (citations.qmd)

---
title: "Rounding and Citations"
author: "Dr. Jacob C. Cooper"
---

## Rounding

In this class, we are going to follow basic rounding rules formatting used for some publications. Specifically, this is based on the guidelines for *Ornithology* (formerly, *The Auk*) and *Ornithology Applications* (formerly, *The Condor*).

When we are rounding data from different datasets, we need to round data to the same number of decimal points as the data we started with. Importantly, we need to do the rounding at the end, and *not* round earlier in the pipeline. We can easily round with the `round` command, as follows.

```{r}
x <- 3.14157

round(x, 2)
```

The following accomplishes the same thing, but with `tidyverse` installed.

```{r}
# always enable tidyverse before using commands!
library(tidyverse)

x %>% 
  round(2)
```

## Citations

Citations need to include:

-   Author

-   Year

-   Title

-   Journal

-   Volume

-   Issue (if available)

-   Page numbers (or article number)

-   DOI (when available)

I will be formatting citations on this site per the guidelines for *Ornithology* (formerly *The Auk*). You can view example citations on the references page.

GitHub Events

Total
  • Public event: 1
  • Push event: 12
  • Create event: 2
Last Year
  • Public event: 1
  • Push event: 12
  • Create event: 2