RJafroc extends Windows JAFROC software at http://www.devchakraborty.com. That website is no longer maintained.master branch.master branch.developer branch is for development/experimental work.master branch.RJafroc book has its own GitHub repository which is currently under development.Three options are given below, in increasing order of complexity. The first method downloads the package from CRAN, the second downloads the package from the master branch on GitHub and the third downloads all source files from the master branch on GitHub and then installs the software. I recommend the second method as the CRAN package is behind the master branch.
R and RStudio.myProject. In my computer it is /Users/Dev/Downloads/myProject.RStudio by clicking on the myProject.Rproj file.RStudio > Packages > Install > RJafroc.library(RJafroc).cran2 branch become avaialable.master branch. To access them use the next suggested method, below.cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)
Plots window.devtools
R and RStudio.myProject. In my computer it is /Users/Dev/Downloads/myProject.RStudio by clicking on the myProject.Rproj file.RStudio > File > New Project > Existing Directory > Select myProject > Create Project.myProject.RProj in the Files menu.devtools package as shown below:RStudio > Packages > Install > devtools.devtools as shown below:library(devtools)
RJafroc directly from GitHub (this is where devtools is used):install_github("dpc10ster/rjafroc")
RJafroc as shown below:library(RJafroc)
cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)
Plots window.myProject.RJafroc source files and install from the downloaded filesGit.R and RStudio.RJafroc directory.RJafroc.Rproj. This will open RStudio.File menu (lower-right window) and click on DESCRIPTION file.install.packages(c("openxlsx", "ggplot2"))
library(RJafroc)
RJafroc has been installed to your computer and is visible to any other R project in any directory.RJafroc folder again (unless you reinstall a new version of the software).RJafroc directory!myProject, outside of the RJafroc folder. In my computer it is /Users/Dev/Downloads/myProject.RStudio > File > New Project > Existing Directory > myProject > Create Project.myProject.RProj in the Files menu.Packages and scroll down to find RJafroc, and check the box next to it. This results in RJafroc being loaded to the current workspace. The following line appears in the Console window (this is the hidden directory referrred to above). library("RJafroc", lib.loc="/Library/Frameworks/R.framework/Versions/3.5/Resources/library")
RJafroc in the packages window. A help window opens up. I find it convenient to put this in its own window by clicking the “out” arrow button (hover message: Show in new window). You can access all documentation from here.cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)
Plots window.These guidelines are adapted from content on the devtools GitHub page.
As contributors and maintainers of this project, 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, or religion.
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other 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. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.