├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── unchull.R ├── README.md ├── data └── pancExample.rda ├── ggunchull.Rproj ├── man ├── cart2polar.Rd ├── polar2cart.Rd ├── smoothUnchull.Rd ├── stat_unchull.Rd ├── stat_unchull0.Rd ├── step1_denoise.Rd ├── step2_gethull.Rd ├── step3_extend.Rd ├── step4_simplify.Rd └── step5_smooth.Rd └── plot └── circleClusters.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/unchull.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/R/unchull.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/README.md -------------------------------------------------------------------------------- /data/pancExample.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/data/pancExample.rda -------------------------------------------------------------------------------- /ggunchull.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/ggunchull.Rproj -------------------------------------------------------------------------------- /man/cart2polar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/cart2polar.Rd -------------------------------------------------------------------------------- /man/polar2cart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/polar2cart.Rd -------------------------------------------------------------------------------- /man/smoothUnchull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/smoothUnchull.Rd -------------------------------------------------------------------------------- /man/stat_unchull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/stat_unchull.Rd -------------------------------------------------------------------------------- /man/stat_unchull0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/stat_unchull0.Rd -------------------------------------------------------------------------------- /man/step1_denoise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/step1_denoise.Rd -------------------------------------------------------------------------------- /man/step2_gethull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/step2_gethull.Rd -------------------------------------------------------------------------------- /man/step3_extend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/step3_extend.Rd -------------------------------------------------------------------------------- /man/step4_simplify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/step4_simplify.Rd -------------------------------------------------------------------------------- /man/step5_smooth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/man/step5_smooth.Rd -------------------------------------------------------------------------------- /plot/circleClusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajuukLyu/ggunchull/HEAD/plot/circleClusters.png --------------------------------------------------------------------------------