README.md

title: "RJafroc software" author: "Dev P. Chakraborty, PhD" date: "r Sys.Date()"

RJafroc

R build status codecov CRAN_Status_Badge

Summary

See this link for an important summary of my AI/FROC research websites.

RJafroc Update History

RJafroc branch designations

Installation: those already familiar with installing R packages from GitHub can ignore the following directions

How do I get set up?

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. + 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.

1. Install from CRAN

cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)

2. Install from GitHub using package devtools

library(devtools)
install_github("dpc10ster/RJafroc")
library(RJafroc)
cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)

3. Download the RJafroc source files and install from the downloaded files

install.packages(c("openxlsx", "ggplot2"))
library(RJafroc)
  library("RJafroc", lib.loc="/Library/Frameworks/R.framework/Versions/3.5/Resources/library")
cbmPlot <- PlotCbmFit(c(1, 2), c(0.5, 0.5))
print(cbmPlot)

Contibutor guidelines (adapted from devtools GitHub page.)

Who do I talk to?

dpc10ster@gmail.com



dpc10ster/rjafroc documentation built on Jan. 18, 2024, 4:37 a.m.