diff --git a/Comp/r-sas-summary-stats.html b/Comp/r-sas-summary-stats.html index b523b407..d596485e 100644 --- a/Comp/r-sas-summary-stats.html +++ b/Comp/r-sas-summary-stats.html @@ -141,6 +141,21 @@
diff --git a/Comp/r-sas_anova.html b/Comp/r-sas_anova.html index f633dbdc..3c886a6f 100644 --- a/Comp/r-sas_anova.html +++ b/Comp/r-sas_anova.html @@ -141,6 +141,21 @@ diff --git a/Comp/r-sas_chi-sq.html b/Comp/r-sas_chi-sq.html index 7f68d166..4b3b565c 100644 --- a/Comp/r-sas_chi-sq.html +++ b/Comp/r-sas_chi-sq.html @@ -143,6 +143,21 @@ diff --git a/Comp/r-sas_cmh.html b/Comp/r-sas_cmh.html index 46d2b724..6b8a6eb0 100644 --- a/Comp/r-sas_cmh.html +++ b/Comp/r-sas_cmh.html @@ -107,6 +107,21 @@ @@ -307,23 +322,23 @@%>% gt() model_tidy
Instructions for Contributions to the CAMIS repository
+The following instructions assume you have not done a contribution in the past. If you have contributed in the past skip down to step 5
Set up RStudio to clone the CAMIS github repo – See this guidance for more detail
If this is your first contribution, contact christina.e.fillmore@gsk.com and give her your github username, requesting to access the CAMIS repo for contributions
Go into RStudio and Create a branch –Within RStudio click the branch button (on the git tab top right). Within the box that comes up ensure you are on the “remote=origin” and “Sync branch with remote” is checked. You can name the branch something to do with the amends you intend to make.
You will need to get git, github, and RStudio setup to talk to each other. To do this you will need to have a github account and git installed on your computer. To connect your computer to github, we tend to recommend using a PAT because it is bit easier than SSH. We have a script that can help you set that up, found here. For more information Jenny Bryan has a great bookdown explaining how to get setup, alternatively see the following link for a short guidance.
Now with RStudio all setup, you will need to “fork” the repository, which basically mean you want to make a copy of this repository that you own, so it will be under your github profile. This will allow you to make changes, without needing direct permission. To do this you will need to go into github, into the CAMIS repo, and click “fork”. This will give you some options of how you want to fork the repo, honestly you can just keep the defaults and then click “Create fork”
+Once you’ve created a copy of this repository, you’ll need to clone it from GitHub to your computer. Click the “code” button to do this. The method you’ll use, either “HTTPS” or “SSH”, depends on how you’ve connected your computer to GitHub. If you’ve set up using a PAT, select the “HTTPS” tab. If you’ve used “SSH”, then choose that tab. Either way, you will need to copy the location in the box.
+In RStudio, you will need to create a new project and select “Version Control” in the project wizard. Then you will select “Git” and finally paste the location copied from github into the URL box. Finally hit “Create Project” and you should be good to go!
+Go into RStudio and Create a branch – Give you are working from your own fork, this step it is a bit optional. It is up to you if you want to make a separate branch or not. But, it is generally considered good practice, especially if you are planning on contributing regularly. To do this from RStudio click the branch button (on the git tab top right). Within the box that comes up ensure you are on the “remote=origin” and “Sync branch with remote” is checked. You can name the branch something to do with the amends you intend to make.
Edit and /or add files within the CAMIS directories. If you are adding SAS guidance store under sas folder, R guidance store under r folder, for “SAS vs R” comparison store under comp. Follow the naming convention of the files already stored in those folders.
Within R studio - Commit each change or new file added, and push to the repo from within R studio.
Go into github and do a pull request to sync your branch back to the origin. See create a pull request for more detail. Note that your change will need a reviewer, so please add DrLynTaylor and statasaurus as reviewers.
Once your change is approved, and merged into the origin, the branch will be deleted and you will need to create a new branch to add further contributions. NOTE: you can make the new branch called the same as the old one if you wish but ensure you select to overwrite the previous one.
Within R studio - Commit each change or new file added, and push to the repo from within R studio. Once you have completed the change you want to make, it is time for a pull request. Before we start though, it is good to check that your branch on github contains all the update you have done. If not you may need to push from Rstudio before moving onto the pull request.
+Pull request in github - Back on your fork in github you will see that your repo is now ahead of the main CAMIS repository. The first thing you want to do is make sure there aren’t any conflict that have arisen with the main repository, so you need to click ‘Sync fork’.
+ +If that is all good then you can create a pull request by clicking on ‘Contribute’ and then ‘Open pull request’. This brings you to a page where you can explain your pull request if you like or you can just confirm you would like to go through with this pull request. The final step is to add a reviewer, please add DrLynTaylor and statasaurus. For more details about making pull requests see create a pull request.
Once your change is approved, and merged into the origin, you will be able to see your changes on CAMIS. If you have made a branch in your fork the branch will be deleted and you will need to create a new branch to add further contributions. NOTE: you can make the new branch called the same as the old one if you wish but ensure you select to overwrite the previous one.