-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from como-ph/dev-v0.1.3
PR for patch release
- Loading branch information
Showing
69 changed files
with
1,401 additions
and
865 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Contributor Code of Conduct | ||
|
||
As contributors and maintainers of this project, and in the interest of | ||
fostering an open and welcoming community, we pledge to respect all people who | ||
contribute through reporting issues, posting feature requests, updating | ||
documentation, submitting pull requests or patches, and other activities. | ||
|
||
We are committed to making participation in this project a harassment-free | ||
experience for everyone, regardless of level of experience, gender, gender | ||
identity and expression, sexual orientation, disability, personal appearance, | ||
body size, race, ethnicity, age, religion, or nationality. | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery | ||
* Personal attacks | ||
* Trolling or insulting/derogatory comments | ||
* Public or private harassment | ||
* Publishing other's private information, such as physical or electronic | ||
addresses, without explicit permission | ||
* Other unethical or unprofessional conduct | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or | ||
reject comments, commits, code, wiki edits, issues, and other contributions | ||
that are not aligned to this Code of Conduct, or to ban temporarily or | ||
permanently any contributor for other behaviors that they deem inappropriate, | ||
threatening, offensive, or harmful. | ||
|
||
By adopting this Code of Conduct, project maintainers commit themselves to | ||
fairly and consistently applying these principles to every aspect of managing | ||
this project. Project maintainers who do not follow or enforce the Code of | ||
Conduct may be permanently removed from the project team. | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces | ||
when an individual is representing the project or its community. | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting a project maintainer at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. Maintainers are | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], | ||
version 1.3.0, available at | ||
[http://contributor-covenant.org/version/1/3/0/][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/3/0/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contributing | ||
|
||
## Bugs | ||
|
||
* Submit an issue on the [issues page](https://github.com/como-ph/oxcovid19/issues) | ||
|
||
## Code contributions | ||
|
||
* Fork this repository to your Github account | ||
|
||
* Clone your version on your account down to your machine from your account | ||
|
||
``` | ||
git clone https://github.com/<yourgithubusername>/oxcovid19.git | ||
``` | ||
|
||
* Make sure to track progress upstream i.e., on our version of `oxcovid19` | ||
at `como-ph/oxcovid19`, by doing | ||
|
||
``` | ||
git remote add upstream https://github.com/como-ph/oxcovid19.git | ||
``` | ||
|
||
* Before making changes make sure to pull changes in from `upstream` by doing | ||
either `git fetch upstream` then merge later or `git pull upstream` to fetch | ||
and merge in one step | ||
|
||
* Make your changes on a new feature branch | ||
|
||
* Please write a test or tests for your changes if they affect code and not just | ||
documentation | ||
|
||
* Push up changes to your account | ||
|
||
* Submit a pull request at `como-ph/oxcovid19` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: oxcovid19 | ||
Type: Package | ||
Title: An R API to the Oxford COVID-19 Database | ||
Version: 0.1.2.9000 | ||
Version: 0.1.3 | ||
Authors@R: c(person(given = "Ernest", family = "Guevarra", | ||
email = "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-4887-4415")), | ||
|
@@ -15,14 +15,15 @@ Authors@R: c(person(given = "Ernest", family = "Guevarra", | |
comment = c(ORCID = "0000-0001-6647-5453")), | ||
person(given = "Alexander", family = "Zarebski", | ||
role = "aut")) | ||
Description: The OxCOVID19 Project <https://covid19.eng.ox.ac.uk> aims to increase | ||
our understanding of the COVID-19 pandemic and elaborate possible strategies | ||
to reduce the impact on the society through the combined power of statistical, | ||
mathematical modelling, and machine learning techniques. The OxCOVID19 | ||
Database is a large, single-centre, multimodal relational database consisting | ||
of information (using acknowledged sources) related to COVID-19 pandemic. | ||
This package provides an R-specific interface to the OxCOVID19 Database based | ||
on widely-used data handling and manipulation approaches in R. | ||
Description: The OxCOVID19 Project <https://covid19.eng.ox.ac.uk> aims to | ||
increase our understanding of the COVID-19 pandemic and elaborate possible | ||
strategies to reduce the impact on the society through the combined power | ||
of statistical, mathematical modelling, and machine learning techniques. | ||
The OxCOVID19 Database is a large, single-centre, multimodal relational | ||
database consisting of information (using acknowledged sources) related to | ||
COVID-19 pandemic. This package provides an R-specific interface to the | ||
OxCOVID19 Database based on widely-used data handling and manipulation | ||
approaches in R. | ||
License: GPL-3 | ||
Depends: | ||
R (>= 2.10) | ||
|
@@ -44,13 +45,12 @@ Suggests: | |
stringr, | ||
RColorBrewer, | ||
ggplot2, | ||
DiagrammeR, | ||
spelling | ||
Encoding: UTF-8 | ||
Language: en-GB | ||
LazyData: true | ||
URL: https://github.com/como-ph/oxcovid19 | ||
BugReports: https://github.com/como-ph/oxcovid19/issues | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.1 | ||
VignetteBuilder: knitr | ||
URL: https://como-ph.github.io/oxcovid19/, https://github.com/como-ph/oxcovid19 | ||
BugReports: https://github.com/como-ph/oxcovid19/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.