Skip to content

Commit cf0131f

Browse files
committedSep 26, 2018
Include links to GitHub in DESCRIPTION and create basic README
1 parent 6d12058 commit cf0131f

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed
 

‎.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
3+
^README\.Rmd$
4+
^README-.*\.png$

‎DESCRIPTION

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Description: This package provides utilities for eddy covariance data
2020
the automated quality checking and make data processing reproducible.
2121
Depends: R (>= 3.5.1)
2222
License: GPL (>= 2)
23+
URL: https://github.com/lsigut/openeddy
24+
BugReports: https://github.com/lsigut/openeddy/issues
2325
Date: 2018-09-18
2426
Encoding: UTF-8
2527
LazyData: true

‎README.Rmd

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
output:
3+
md_document:
4+
variant: markdown_github
5+
---
6+
7+
<!-- README.md is generated from README.Rmd. Please edit that file -->
8+
9+
```{r, echo = FALSE}
10+
knitr::opts_chunk$set(
11+
collapse = TRUE,
12+
comment = "#>",
13+
fig.path = "README-"
14+
)
15+
```
16+
17+
# openeddy
18+
19+
This package provides utilities for eddy covariance data handling,
20+
quality checking (similar to Mauder et al., 2013), processing, summarising
21+
and plotting. It aims to standardise the automated quality checking and make
22+
data processing reproducible.
23+
24+
## Example
25+
26+
This is a basic example which shows you how to solve a common problem:
27+
28+
```{r example}
29+
## basic example code
30+
```

‎README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!-- README.md is generated from README.Rmd. Please edit that file -->
2+
openeddy
3+
========
4+
5+
This package provides utilities for eddy covariance data handling, quality checking (similar to Mauder et al., 2013), processing, summarising and plotting. It aims to standardise the automated quality checking and make data processing reproducible.
6+
7+
Example
8+
-------
9+
10+
This is a basic example which shows you how to solve a common problem:
11+
12+
``` r
13+
## basic example code
14+
```

0 commit comments

Comments
 (0)
Please sign in to comment.