@jahan-ishrat - can you move your preliminary statistical testing into a commented notebook? I like using the usethis package to create rmdvignettes where you can easily documents your work. If you don't have the usethis packages already run install.packages("usethis"). Once the usethis package has been installed I recommend the following this procedure.
[x] run - usethis::use_vignette("aa-irq_prelim_stat_testing-IJ")
[x] copy your code currently in .R file into this notebook and add documentation between code chunks
[x] Save and commit the vignette as you work on it. Also push however much you like as it will not effect the other parts of the repo
hint: you might have to load the here package library(here) as the working directories tend to modified in rmds - this will correct that
@jahan-ishrat - can you move your preliminary statistical testing into a commented notebook? I like using the
usethis
package to creatermd
vignettes
where you can easily documents your work. If you don't have theusethis
packages already runinstall.packages("usethis")
. Once theusethis
package has been installed I recommend the following this procedure.usethis::use_vignette("aa-irq_prelim_stat_testing-IJ")
.R
file into this notebook and add documentation between code chunkshint: you might have to load the
here
packagelibrary(here)
as the working directories tend to modified in rmds - this will correct that