├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── findPC.R └── procdata.R ├── README.md ├── data └── procdata.rda ├── findPC.Rproj ├── man ├── findPC.Rd └── procdata.Rd └── vignettes ├── UserManual.Rmd └── UserManual.html /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/findPC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/R/findPC.R -------------------------------------------------------------------------------- /R/procdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/R/procdata.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/README.md -------------------------------------------------------------------------------- /data/procdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/data/procdata.rda -------------------------------------------------------------------------------- /findPC.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/findPC.Rproj -------------------------------------------------------------------------------- /man/findPC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/man/findPC.Rd -------------------------------------------------------------------------------- /man/procdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/man/procdata.Rd -------------------------------------------------------------------------------- /vignettes/UserManual.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/vignettes/UserManual.Rmd -------------------------------------------------------------------------------- /vignettes/UserManual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haotian-zhuang/findPC/HEAD/vignettes/UserManual.html --------------------------------------------------------------------------------