Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vlucet/carbon
https://github.com/vlucet/carbon
co2-emissions r-package workshop-materials
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/vlucet/carbon
- Owner: VLucet
- License: gpl-3.0
- Created: 2021-08-08T14:23:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-15T22:04:19.000Z (over 3 years ago)
- Last Synced: 2024-10-13T23:41:14.072Z (2 months ago)
- Topics: co2-emissions, r-package, workshop-materials
- Language: R
- Homepage: https://vlucet.github.io/carbon
- Size: 63.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```## carbon
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
[![Codecov test coverage](https://codecov.io/gh/VLucet/carbon/branch/main/graph/badge.svg)](https://codecov.io/gh/VLucet/carbon?branch=main)
[![R-CMD-check](https://github.com/VLucet/carbon/workflows/R-CMD-check/badge.svg)](https://github.com/VLucet/carbon/actions)The goal of carbon is to serve as an example package for the [CSEE 2021 workshop on R package development for research](https://github.com/VLucet/R_pkg_dev_for_research_CSEE_2021).
### Installation
You can install the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("VLucet/carbon")
```### Example
This is a basic example:
```{r example}
library(carbon)
ppm_from_date("1996-10-29")
```