├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── demand.R ├── econocharts-package.R ├── globals.R ├── indiference.R ├── intersect.R ├── laffer.R ├── neolabsup.R ├── ppf.R ├── ptvalue.R ├── sdcurve.R ├── supply.R ├── tax.R └── zzz.R ├── README.md ├── econocharts.Rproj └── man ├── curve_intersect.Rd ├── demand.Rd ├── econocharts-package.Rd ├── indifference.Rd ├── laffer.Rd ├── neolabsup.Rd ├── ppf.Rd ├── ptvalue.Rd ├── sdcurve.Rd ├── supply.Rd └── tax_graph.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: José Carlos Soage González 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/demand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/demand.R -------------------------------------------------------------------------------- /R/econocharts-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/econocharts-package.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/indiference.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/indiference.R -------------------------------------------------------------------------------- /R/intersect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/intersect.R -------------------------------------------------------------------------------- /R/laffer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/laffer.R -------------------------------------------------------------------------------- /R/neolabsup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/neolabsup.R -------------------------------------------------------------------------------- /R/ppf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/ppf.R -------------------------------------------------------------------------------- /R/ptvalue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/ptvalue.R -------------------------------------------------------------------------------- /R/sdcurve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/sdcurve.R -------------------------------------------------------------------------------- /R/supply.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/supply.R -------------------------------------------------------------------------------- /R/tax.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/tax.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/README.md -------------------------------------------------------------------------------- /econocharts.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/econocharts.Rproj -------------------------------------------------------------------------------- /man/curve_intersect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/curve_intersect.Rd -------------------------------------------------------------------------------- /man/demand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/demand.Rd -------------------------------------------------------------------------------- /man/econocharts-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/econocharts-package.Rd -------------------------------------------------------------------------------- /man/indifference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/indifference.Rd -------------------------------------------------------------------------------- /man/laffer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/laffer.Rd -------------------------------------------------------------------------------- /man/neolabsup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/neolabsup.Rd -------------------------------------------------------------------------------- /man/ppf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/ppf.Rd -------------------------------------------------------------------------------- /man/ptvalue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/ptvalue.Rd -------------------------------------------------------------------------------- /man/sdcurve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/sdcurve.Rd -------------------------------------------------------------------------------- /man/supply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/supply.Rd -------------------------------------------------------------------------------- /man/tax_graph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-CoderDotCom/econocharts/HEAD/man/tax_graph.Rd --------------------------------------------------------------------------------