Skip to content
Snippets Groups Projects
Commit 5ed06cc2 authored by B.Anderson's avatar B.Anderson
Browse files

fixed merge

Merge branch 'master' of git.soton.ac.uk:ba1e12/workflow

Conflicts:
	template.md
parents ad40ea93 a2082b4a
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
There are as many templates for (R) repos as there R users... Here's ours.
We srtucture the repo as a package. We may never build it but usually we do so that the package functions are available everywhere in it
We structure the repo as a package. We may never build it but usually we do so that the package functions are available everywhere in it
Things you should touch:
......@@ -14,12 +14,16 @@ Things you should touch:
| **R/** | Where we store functions that get built |
| **analysis/** | Where we store .Rmd files and the .R scripts that call them (usually using a `drake` plan) |
| **docs/** | Where we put output generated by the .R/.Rmd code. This is helpful if you are using [github/lab pages](https://guides.github.com/features/pages/). Unfortunately the University of Southampton gitlab service does not currently support this. |
| **notData/** | Where we do not store data. R packages expect certain kinds of data in their 'data/' folders. Do not put your data in it. In fact we recommend **not** putting your data in your repo at all. Yes, this breaks true reproducability but there are reasons:
* we often use data that is commerecial or sensitive or personal (under GDPR) - so we cannot risk that leaking out
| **notData/** | Where we do not store data. R packages expect certain kinds of data in their 'data/' folders. Do not put your data in it. |
In fact we recommend **not** putting your data in your repo at all. Yes, this breaks true reproducability but there are reasons:
* we often use data that is commercial or sensitive or personal (under GDPR) - so we cannot risk that leaking out
* we often use _very large_ datasets which most git/hub/lab services sensibly reject
* we often pull real time data on the fly from elsewhere so storage makes no sense |
* we often pull real time data on the fly from elsewhere so storage makes no sense
Things you should not touch:
| **man/** | Created by building the project/package using roxygen|
| **NAMESPACE** | - ditto -
\ No newline at end of file
| Item | Description |
| --- | --- |
| **man/** | Created by building the project/package using roxygen2 |
| **NAMESPACE** | - ditto - |
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment