├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── SSexp2P.R ├── SSexp3P.R ├── SSpower2P.R ├── SSpower3P.R ├── trendline.R └── trendline_summary.R ├── README.md ├── basicTrendline.Rproj ├── docs └── images │ ├── basicTrendline.hex.png │ ├── case0.png │ ├── case1.png │ ├── case2.png │ ├── case3.png │ ├── case4.png │ ├── case5.png │ ├── case6.png │ ├── case7.png │ └── case8.png └── man ├── SSexp2P.Rd ├── SSexp3P.Rd ├── SSpower2P.Rd ├── SSpower3P.Rd ├── trendline.Rd └── trendline_summary.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/NEWS -------------------------------------------------------------------------------- /R/SSexp2P.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/SSexp2P.R -------------------------------------------------------------------------------- /R/SSexp3P.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/SSexp3P.R -------------------------------------------------------------------------------- /R/SSpower2P.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/SSpower2P.R -------------------------------------------------------------------------------- /R/SSpower3P.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/SSpower3P.R -------------------------------------------------------------------------------- /R/trendline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/trendline.R -------------------------------------------------------------------------------- /R/trendline_summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/R/trendline_summary.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/README.md -------------------------------------------------------------------------------- /basicTrendline.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/basicTrendline.Rproj -------------------------------------------------------------------------------- /docs/images/basicTrendline.hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/basicTrendline.hex.png -------------------------------------------------------------------------------- /docs/images/case0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case0.png -------------------------------------------------------------------------------- /docs/images/case1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case1.png -------------------------------------------------------------------------------- /docs/images/case2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case2.png -------------------------------------------------------------------------------- /docs/images/case3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case3.png -------------------------------------------------------------------------------- /docs/images/case4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case4.png -------------------------------------------------------------------------------- /docs/images/case5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case5.png -------------------------------------------------------------------------------- /docs/images/case6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case6.png -------------------------------------------------------------------------------- /docs/images/case7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case7.png -------------------------------------------------------------------------------- /docs/images/case8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/docs/images/case8.png -------------------------------------------------------------------------------- /man/SSexp2P.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/SSexp2P.Rd -------------------------------------------------------------------------------- /man/SSexp3P.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/SSexp3P.Rd -------------------------------------------------------------------------------- /man/SSpower2P.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/SSpower2P.Rd -------------------------------------------------------------------------------- /man/SSpower3P.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/SSpower3P.Rd -------------------------------------------------------------------------------- /man/trendline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/trendline.Rd -------------------------------------------------------------------------------- /man/trendline_summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhDMeiwp/basicTrendline/HEAD/man/trendline_summary.Rd --------------------------------------------------------------------------------