Thank you for considering contributing to our project! We appreciate any form of contribution, from asking questions to submitting bug reports or proposing new features. Please review our Code of Conduct before engaging with the project.
- Use the search functionality to check for existing issues.
- If no relevant results are found, create a new issue.
- Apply the "Question" label and other relevant labels as needed.
- Search for existing issues related to the bug.
- If not found, create a new issue with sufficient details (including commit SHA, dependency info, and OS details).
- Apply relevant labels to the newly created issue.
(Important) Before making changes, announce your plan through a new issue.
- Wait for community consensus on the proposed idea.
- Fork the repository and create a feature branch.
- Stay updated with the main branch by pulling changes.
- Install dependencies (refer to development documentation).
- Add new tests if necessary and update/expand documentation.
- Push your feature branch to your fork.
- Create a pull request following these instructions.
If you feel you've made a valuable contribution but need help with tests or documentation, submit the pull request, and we'll assist you.
- Use the search function to check for similar experiences or suggestions.
- Open a new issue to share your experience, provide feedback, or suggest improvements/features.
To contribute to our project, you'll need to set up your development environment for R. Follow these steps:
-
Install R and R Studio:
-
Clone the Repository:
- Fork the repository to your GitHub account.
- Clone the forked repository to your local machine:
git clone https://github.com/your-username/repository.git
-
Create a Virtual Environment for R:
- R projects often use
.Renviron
or.Rprofile
for custom environment settings. Check the project's documentation for any specific configurations. - In R, the equivalent to Python's requirements.txt is typically a file named renv.lock. This file contains information about the dependencies required in a R project, including the versions of R and all installed packages.
- Set up a virtual environment using R's
renv
package. Navigate to the project directory and run:install.packages("renv") library(renv) renv::init()
- R projects often use
When you have cloned the project and run renv::init(), renv will use the information in the 'renv.lock' file to recreate the exact environment we used in the project.
- Install project dependencies:
renv::install()
To contribute to our project in Python, follow these steps:
-
Install Python:
- Download and install Python from here.
-
Clone the Repository:
- Fork the repository to your GitHub account.
- Clone the forked repository to your local machine:
git clone https://github.com/your-username/repository.git
-
Create a Virtual Environment for Python:
-
Navigate to the project directory and create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On Unix or MacOS:
source venv/bin/activate
- On Windows:
-
Install project dependencies:
pip install -r requirements.txt
-