├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore ├── ISSUE_TEMPLATE │ └── data_update.md └── workflows │ ├── R-CMD-check.yaml │ ├── data_update.yaml │ ├── generate-2R-model.yaml │ ├── save-BEA-data.yaml │ └── save-annual-BEA-data.yaml ├── .gitignore ├── .zenodo.json ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── AdjustPrice.R ├── AggregationFunctions.R ├── BuildModel.R ├── CalculationFunctions.R ├── CompareModels.R ├── ConfigDocumentation.R ├── ConfigurationFunctions.R ├── CrosswalkFunctions.R ├── DataDocumentation.R ├── DataQualityFunctions.R ├── DemandFunctions.R ├── DisaggregateFunctions.R ├── ExternalImportFactors.R ├── FlowMappingFunctions.R ├── FlowsaFunctions.R ├── Hybridization.R ├── IOFunctions.R ├── InitializeModel.R ├── LCIAfmtFunctions.R ├── LoadDemandVectors.R ├── LoadGOandCPI.R ├── LoadIOTables.R ├── LoadIndicators.R ├── LoadMargins.R ├── LoadSatellites.R ├── MUIOFunctions.R ├── SatelliteFunctions.R ├── StateiorFunctions.R ├── UtilityFunctions.R ├── ValidateModel.R ├── VisualizationFunctions.R ├── WIOFunctions.R └── WriteModel.R ├── README.md ├── data-raw ├── BEAData.R ├── BEAData_Detail.R ├── BEAData_Support.R ├── CoAData.R └── MasterCrosswalk.R ├── data ├── DataSourceConfiguration.rda ├── DemandConfiguration.rda ├── Detail_CPI_IO_12sch.rda ├── Detail_CPI_IO_17sch.rda ├── Detail_CommodityCodeName_2012.rda ├── Detail_CommodityCodeName_2017.rda ├── Detail_FinalDemandCodeName_2012.rda ├── Detail_FinalDemandCodeName_2017.rda ├── Detail_GrossOutput_IO_12sch.rda ├── Detail_GrossOutput_IO_17sch.rda ├── Detail_Import_2012_BeforeRedef_12sch.rda ├── Detail_Import_2012_BeforeRedef_17sch.rda ├── Detail_Import_2017_BeforeRedef_17sch.rda ├── Detail_IndustryCodeName_2012.rda ├── Detail_IndustryCodeName_2017.rda ├── Detail_Make_2012_AfterRedef_12sch.rda ├── Detail_Make_2012_BeforeRedef_12sch.rda ├── Detail_Make_2012_BeforeRedef_17sch.rda ├── Detail_Make_2017_AfterRedef_17sch.rda ├── Detail_Make_2017_BeforeRedef_17sch.rda ├── Detail_Margins_2012_BeforeRedef_12sch.rda ├── Detail_Margins_2012_BeforeRedef_17sch.rda ├── Detail_Margins_2017_BeforeRedef_17sch.rda ├── Detail_Supply_2012_12sch.rda ├── Detail_Supply_2012_17sch.rda ├── Detail_Supply_2017_17sch.rda ├── Detail_Use_2012_PRO_AfterRedef_12sch.rda ├── Detail_Use_2012_PRO_BeforeRedef_12sch.rda ├── Detail_Use_2012_PRO_BeforeRedef_17sch.rda ├── Detail_Use_2012_PUR_AfterRedef_12sch.rda ├── Detail_Use_2012_PUR_BeforeRedef_12sch.rda ├── Detail_Use_2017_PRO_AfterRedef_17sch.rda ├── Detail_Use_2017_PRO_BeforeRedef_17sch.rda ├── Detail_Use_2017_PUR_AfterRedef_17sch.rda ├── Detail_Use_2017_PUR_BeforeRedef_17sch.rda ├── Detail_Use_SUT_2012_12sch.rda ├── Detail_Use_SUT_2012_17sch.rda ├── Detail_Use_SUT_2017_17sch.rda ├── Detail_ValueAddedCodeName_2012.rda ├── Detail_ValueAddedCodeName_2017.rda ├── IndicatorConfiguration.rda ├── MasterCrosswalk.rda ├── MasterCrosswalk2007.rda ├── MasterCrosswalk2012.rda ├── MasterCrosswalk2017.rda ├── ModelConfiguration.rda ├── SatelliteTableConfiguration.rda ├── Sector_CPI_IO_12sch.rda ├── Sector_CPI_IO_17sch.rda ├── Sector_CommodityCodeName_2012.rda ├── Sector_CommodityCodeName_2017.rda ├── Sector_FinalDemandCodeName_2012.rda ├── Sector_FinalDemandCodeName_2017.rda ├── Sector_GrossOutput_IO_12sch.rda ├── Sector_GrossOutput_IO_17sch.rda ├── Sector_IndustryCodeName_2012.rda ├── Sector_IndustryCodeName_2017.rda ├── Sector_ValueAddedCodeName_2012.rda ├── Sector_ValueAddedCodeName_2017.rda ├── Sector_ValueAdded_IO_12sch.rda ├── Sector_ValueAdded_IO_17sch.rda ├── Summary_CPI_IO_12sch.rda ├── Summary_CPI_IO_17sch.rda ├── Summary_CommodityCodeName_2012.rda ├── Summary_CommodityCodeName_2017.rda ├── Summary_FinalDemandCodeName_2012.rda ├── Summary_FinalDemandCodeName_2017.rda ├── Summary_GrossOutput_IO_12sch.rda ├── Summary_GrossOutput_IO_17sch.rda ├── Summary_Import_2010_BeforeRedef_12sch.rda ├── Summary_Import_2011_BeforeRedef_12sch.rda ├── Summary_Import_2012_BeforeRedef_12sch.rda ├── Summary_Import_2012_BeforeRedef_17sch.rda ├── Summary_Import_2013_BeforeRedef_12sch.rda ├── Summary_Import_2013_BeforeRedef_17sch.rda ├── Summary_Import_2014_BeforeRedef_12sch.rda ├── Summary_Import_2014_BeforeRedef_17sch.rda ├── Summary_Import_2015_BeforeRedef_12sch.rda ├── Summary_Import_2015_BeforeRedef_17sch.rda ├── Summary_Import_2016_BeforeRedef_12sch.rda ├── Summary_Import_2016_BeforeRedef_17sch.rda ├── Summary_Import_2017_BeforeRedef_12sch.rda ├── Summary_Import_2017_BeforeRedef_17sch.rda ├── Summary_Import_2018_BeforeRedef_12sch.rda ├── Summary_Import_2018_BeforeRedef_17sch.rda ├── Summary_Import_2019_BeforeRedef_12sch.rda ├── Summary_Import_2019_BeforeRedef_17sch.rda ├── Summary_Import_2020_BeforeRedef_12sch.rda ├── Summary_Import_2020_BeforeRedef_17sch.rda ├── Summary_Import_2021_BeforeRedef_17sch.rda ├── Summary_Import_2022_BeforeRedef_17sch.rda ├── Summary_Import_2023_BeforeRedef_17sch.rda ├── Summary_IndustryCodeName_2012.rda ├── Summary_IndustryCodeName_2017.rda ├── Summary_Make_2010_AfterRedef_12sch.rda ├── Summary_Make_2010_BeforeRedef_12sch.rda ├── Summary_Make_2011_AfterRedef_12sch.rda ├── Summary_Make_2011_BeforeRedef_12sch.rda ├── Summary_Make_2012_AfterRedef_12sch.rda ├── Summary_Make_2012_AfterRedef_17sch.rda ├── Summary_Make_2012_BeforeRedef_12sch.rda ├── Summary_Make_2012_BeforeRedef_17sch.rda ├── Summary_Make_2013_AfterRedef_12sch.rda ├── Summary_Make_2013_AfterRedef_17sch.rda ├── Summary_Make_2013_BeforeRedef_12sch.rda ├── Summary_Make_2013_BeforeRedef_17sch.rda ├── Summary_Make_2014_AfterRedef_12sch.rda ├── Summary_Make_2014_AfterRedef_17sch.rda ├── Summary_Make_2014_BeforeRedef_12sch.rda ├── Summary_Make_2014_BeforeRedef_17sch.rda ├── Summary_Make_2015_AfterRedef_12sch.rda ├── Summary_Make_2015_AfterRedef_17sch.rda ├── Summary_Make_2015_BeforeRedef_12sch.rda ├── Summary_Make_2015_BeforeRedef_17sch.rda ├── Summary_Make_2016_AfterRedef_12sch.rda ├── Summary_Make_2016_AfterRedef_17sch.rda ├── Summary_Make_2016_BeforeRedef_12sch.rda ├── Summary_Make_2016_BeforeRedef_17sch.rda ├── Summary_Make_2017_AfterRedef_12sch.rda ├── Summary_Make_2017_AfterRedef_17sch.rda ├── Summary_Make_2017_BeforeRedef_12sch.rda ├── Summary_Make_2017_BeforeRedef_17sch.rda ├── Summary_Make_2018_AfterRedef_12sch.rda ├── Summary_Make_2018_AfterRedef_17sch.rda ├── Summary_Make_2018_BeforeRedef_12sch.rda ├── Summary_Make_2018_BeforeRedef_17sch.rda ├── Summary_Make_2019_AfterRedef_12sch.rda ├── Summary_Make_2019_AfterRedef_17sch.rda ├── Summary_Make_2019_BeforeRedef_12sch.rda ├── Summary_Make_2019_BeforeRedef_17sch.rda ├── Summary_Make_2020_AfterRedef_12sch.rda ├── Summary_Make_2020_AfterRedef_17sch.rda ├── Summary_Make_2020_BeforeRedef_12sch.rda ├── Summary_Make_2020_BeforeRedef_17sch.rda ├── Summary_Make_2021_AfterRedef_12sch.rda ├── Summary_Make_2021_AfterRedef_17sch.rda ├── Summary_Make_2021_BeforeRedef_12sch.rda ├── Summary_Make_2021_BeforeRedef_17sch.rda ├── Summary_Make_2022_AfterRedef_17sch.rda ├── Summary_Make_2022_BeforeRedef_17sch.rda ├── Summary_Make_2023_AfterRedef_17sch.rda ├── Summary_Make_2023_BeforeRedef_17sch.rda ├── Summary_Supply_2010_12sch.rda ├── Summary_Supply_2011_12sch.rda ├── Summary_Supply_2012_12sch.rda ├── Summary_Supply_2012_17sch.rda ├── Summary_Supply_2013_12sch.rda ├── Summary_Supply_2013_17sch.rda ├── Summary_Supply_2014_12sch.rda ├── Summary_Supply_2014_17sch.rda ├── Summary_Supply_2015_12sch.rda ├── Summary_Supply_2015_17sch.rda ├── Summary_Supply_2016_12sch.rda ├── Summary_Supply_2016_17sch.rda ├── Summary_Supply_2017_12sch.rda ├── Summary_Supply_2017_17sch.rda ├── Summary_Supply_2018_12sch.rda ├── Summary_Supply_2018_17sch.rda ├── Summary_Supply_2019_12sch.rda ├── Summary_Supply_2019_17sch.rda ├── Summary_Supply_2020_12sch.rda ├── Summary_Supply_2020_17sch.rda ├── Summary_Supply_2021_17sch.rda ├── Summary_Supply_2022_17sch.rda ├── Summary_Supply_2023_17sch.rda ├── Summary_Use_2010_PRO_AfterRedef_12sch.rda ├── Summary_Use_2010_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2011_PRO_AfterRedef_12sch.rda ├── Summary_Use_2011_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2012_PRO_AfterRedef_12sch.rda ├── Summary_Use_2012_PRO_AfterRedef_17sch.rda ├── Summary_Use_2012_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2012_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2012_PUR_BeforeRedef_12sch.rda ├── Summary_Use_2013_PRO_AfterRedef_12sch.rda ├── Summary_Use_2013_PRO_AfterRedef_17sch.rda ├── Summary_Use_2013_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2013_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2014_PRO_AfterRedef_12sch.rda ├── Summary_Use_2014_PRO_AfterRedef_17sch.rda ├── Summary_Use_2014_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2014_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2015_PRO_AfterRedef_12sch.rda ├── Summary_Use_2015_PRO_AfterRedef_17sch.rda ├── Summary_Use_2015_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2015_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2016_PRO_AfterRedef_12sch.rda ├── Summary_Use_2016_PRO_AfterRedef_17sch.rda ├── Summary_Use_2016_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2016_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2017_PRO_AfterRedef_12sch.rda ├── Summary_Use_2017_PRO_AfterRedef_17sch.rda ├── Summary_Use_2017_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2017_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2017_PUR_BeforeRedef_17sch.rda ├── Summary_Use_2018_PRO_AfterRedef_12sch.rda ├── Summary_Use_2018_PRO_AfterRedef_17sch.rda ├── Summary_Use_2018_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2018_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2019_PRO_AfterRedef_12sch.rda ├── Summary_Use_2019_PRO_AfterRedef_17sch.rda ├── Summary_Use_2019_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2019_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2020_PRO_AfterRedef_12sch.rda ├── Summary_Use_2020_PRO_AfterRedef_17sch.rda ├── Summary_Use_2020_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2020_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2021_PRO_AfterRedef_12sch.rda ├── Summary_Use_2021_PRO_AfterRedef_17sch.rda ├── Summary_Use_2021_PRO_BeforeRedef_12sch.rda ├── Summary_Use_2021_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2022_PRO_AfterRedef_17sch.rda ├── Summary_Use_2022_PRO_BeforeRedef_17sch.rda ├── Summary_Use_2023_PRO_AfterRedef_17sch.rda ├── Summary_Use_2023_PRO_BeforeRedef_17sch.rda ├── Summary_Use_SUT_2010_12sch.rda ├── Summary_Use_SUT_2011_12sch.rda ├── Summary_Use_SUT_2012_12sch.rda ├── Summary_Use_SUT_2012_17sch.rda ├── Summary_Use_SUT_2013_12sch.rda ├── Summary_Use_SUT_2013_17sch.rda ├── Summary_Use_SUT_2014_12sch.rda ├── Summary_Use_SUT_2014_17sch.rda ├── Summary_Use_SUT_2015_12sch.rda ├── Summary_Use_SUT_2015_17sch.rda ├── Summary_Use_SUT_2016_12sch.rda ├── Summary_Use_SUT_2016_17sch.rda ├── Summary_Use_SUT_2017_12sch.rda ├── Summary_Use_SUT_2017_17sch.rda ├── Summary_Use_SUT_2018_12sch.rda ├── Summary_Use_SUT_2018_17sch.rda ├── Summary_Use_SUT_2019_12sch.rda ├── Summary_Use_SUT_2019_17sch.rda ├── Summary_Use_SUT_2020_12sch.rda ├── Summary_Use_SUT_2020_17sch.rda ├── Summary_Use_SUT_2021_17sch.rda ├── Summary_Use_SUT_2022_17sch.rda ├── Summary_Use_SUT_2023_17sch.rda ├── Summary_ValueAddedCodeName_2012.rda ├── Summary_ValueAddedCodeName_2017.rda ├── Summary_ValueAdded_IO_12sch.rda └── Summary_ValueAdded_IO_17sch.rda ├── format_specs ├── Calculation.md ├── Model.md ├── ModelCustomization.md └── ModelSpecification.md ├── inst ├── doc │ ├── CompareModels.Rmd │ ├── CompareModels_render.Rmd │ ├── CompareUSEEIOv2.0-411&USEEIOv2.0.1-411.md │ ├── CompareUSEEIOv2.0.1-411&USEEIOv2.1-422.md │ ├── Example.Rmd │ ├── ValidateModel.Rmd │ ├── ValidateModel_render.Rmd │ └── output │ │ ├── CompareUSEEIOv2.0.1-411&USEEIOv2.1-422.md │ │ ├── ValidateUSEEIOv2.0.1-411.md │ │ ├── ValidateUSEEIOv2.0.md │ │ └── ValidateUSEEIOv2.1-422.md ├── extdata │ ├── .gitignore │ ├── 2-digit_2012_Codes.xls │ ├── 2012_Detail_Schema_Info.csv │ ├── 2012_Sector_Schema_Info.csv │ ├── 2012_Summary_Schema_Info.csv │ ├── 2012_to_2007_NAICS.xls │ ├── 2017_Detail_Schema_Info.csv │ ├── 2017_Summary_Schema_Info.csv │ ├── 23_BEAtoUSEEIOtoNAICS_2007.csv │ ├── 23_BEAtoUSEEIOtoNAICS_2012.csv │ ├── 23_BEAtoUSEEIOtoNAICS_2017.csv │ ├── BEA_2012_Sector_CodeName_mapping.csv │ ├── BEA_2017_Sector_CodeName_mapping.csv │ ├── CensusNAICSManufacturingMining_2012.csv │ ├── Crosswalk_CoAtoNAICS.csv │ ├── Crosswalk_DetailGDPIndustrytoIO.csv │ ├── Crosswalk_DetailIndustry2007and2012Schemas.csv │ ├── Crosswalk_DetailIndustrytoCommodityNameSchema.csv │ ├── Crosswalk_FIPS.csv │ ├── Crosswalk_SectorGDPIndustrytoIO2012Schema.csv │ ├── Crosswalk_SummaryGDPIndustrytoIO2012Schema.csv │ ├── Crosswalk_SummaryIndustrytoCommodityName2012Schema.csv │ ├── Crosswalk_USEEIO_FlowMapping.csv │ ├── F_BEAtoUSEEIOtoNAICS.csv │ ├── G_BEAtoUSEEIOtoNAICS_2007.csv │ ├── G_BEAtoUSEEIOtoNAICS_2012.csv │ ├── G_BEAtoUSEEIOtoNAICS_2017.csv │ ├── HS&ORE_BEAtoUSEEIOtoNAICS_2007.csv │ ├── HS&ORE_BEAtoUSEEIOtoNAICS_2012.csv │ ├── HS&ORE_BEAtoUSEEIOtoNAICS_2017.csv │ ├── IOMB_Fields.yml │ ├── USEEIO_API_fields.yml │ ├── USEEIO_Commodity_Meta.csv │ ├── USEEIO_LCIA_Factors.csv │ ├── USEEIO_LCIA_Indicators.csv │ ├── V_BEAtoUSEEIOtoNAICS.csv │ ├── VisualizationEssentials.yml │ ├── demandspecs │ │ └── DefaultDemandVectors.yml │ ├── disaggspecs │ │ ├── UtilityDisaggregation.yml │ │ ├── UtilityDisaggregationSummary_Make.csv │ │ ├── UtilityDisaggregationSummary_Use.csv │ │ ├── UtilityDisaggregation_Sectors.csv │ │ ├── WasteDisaggregationDetail.yml │ │ ├── WasteDisaggregationDetail2017.yml │ │ ├── WasteDisaggregationDetail2017_Make.csv │ │ ├── WasteDisaggregationDetail2017_Use.csv │ │ ├── WasteDisaggregationDetail_Make.csv │ │ ├── WasteDisaggregationDetail_Use.csv │ │ ├── WasteDisaggregation_Env.csv │ │ └── WasteDisaggregation_Sectors.csv │ ├── metadata │ │ ├── Detail_CPI_IO_12sch_metadata.json │ │ ├── Detail_CPI_IO_17sch_metadata.json │ │ ├── Detail_CommodityCodeName_2012_metadata.json │ │ ├── Detail_CommodityCodeName_2017_metadata.json │ │ ├── Detail_FinalDemandCodeName_2012_metadata.json │ │ ├── Detail_FinalDemandCodeName_2017_metadata.json │ │ ├── Detail_GrossOutput_IO_12sch_metadata.json │ │ ├── Detail_GrossOutput_IO_17sch_metadata.json │ │ ├── Detail_Import_2012_BeforeRedef_12sch_metadata.json │ │ ├── Detail_Import_2012_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Import_2017_BeforeRedef_17sch_metadata.json │ │ ├── Detail_IndustryCodeName_2012_metadata.json │ │ ├── Detail_IndustryCodeName_2017_metadata.json │ │ ├── Detail_Make_2012_AfterRedef_12sch_metadata.json │ │ ├── Detail_Make_2012_BeforeRedef_12sch_metadata.json │ │ ├── Detail_Make_2012_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Make_2017_AfterRedef_17sch_metadata.json │ │ ├── Detail_Make_2017_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Margins_2012_BeforeRedef_12sch_metadata.json │ │ ├── Detail_Margins_2012_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Margins_2017_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Supply_2012_12sch_metadata.json │ │ ├── Detail_Supply_2012_17sch_metadata.json │ │ ├── Detail_Supply_2017_17sch_metadata.json │ │ ├── Detail_Use_2012_PRO_AfterRedef_12sch_metadata.json │ │ ├── Detail_Use_2012_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Detail_Use_2012_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Use_2012_PUR_AfterRedef_12sch_metadata.json │ │ ├── Detail_Use_2012_PUR_BeforeRedef_12sch_metadata.json │ │ ├── Detail_Use_2017_PRO_AfterRedef_17sch_metadata.json │ │ ├── Detail_Use_2017_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Use_2017_PUR_AfterRedef_17sch_metadata.json │ │ ├── Detail_Use_2017_PUR_BeforeRedef_17sch_metadata.json │ │ ├── Detail_Use_SUT_2012_12sch_metadata.json │ │ ├── Detail_Use_SUT_2012_17sch_metadata.json │ │ ├── Detail_Use_SUT_2017_17sch_metadata.json │ │ ├── Detail_ValueAddedCodeName_2012_metadata.json │ │ ├── Detail_ValueAddedCodeName_2017_metadata.json │ │ ├── Sector_CPI_IO_12sch_metadata.json │ │ ├── Sector_CPI_IO_17sch_metadata.json │ │ ├── Sector_CommodityCodeName_2012_metadata.json │ │ ├── Sector_CommodityCodeName_2017_metadata.json │ │ ├── Sector_FinalDemandCodeName_2012_metadata.json │ │ ├── Sector_FinalDemandCodeName_2017_metadata.json │ │ ├── Sector_GrossOutput_IO_12sch_metadata.json │ │ ├── Sector_GrossOutput_IO_17sch_metadata.json │ │ ├── Sector_IndustryCodeName_2012_metadata.json │ │ ├── Sector_IndustryCodeName_2017_metadata.json │ │ ├── Sector_ValueAddedCodeName_2012_metadata.json │ │ ├── Sector_ValueAddedCodeName_2017_metadata.json │ │ ├── Sector_ValueAdded_IO_12sch_metadata.json │ │ ├── Sector_ValueAdded_IO_17sch_metadata.json │ │ ├── Summary_CPI_IO_12sch_metadata.json │ │ ├── Summary_CPI_IO_17sch_metadata.json │ │ ├── Summary_CommodityCodeName_2012_metadata.json │ │ ├── Summary_CommodityCodeName_2017_metadata.json │ │ ├── Summary_FinalDemandCodeName_2012_metadata.json │ │ ├── Summary_FinalDemandCodeName_2017_metadata.json │ │ ├── Summary_GrossOutput_IO_12sch_metadata.json │ │ ├── Summary_GrossOutput_IO_17sch_metadata.json │ │ ├── Summary_Import_2010_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2011_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2012_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2012_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2013_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2013_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2014_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2014_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2015_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2015_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2016_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2016_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2017_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2017_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2018_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2018_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2019_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2019_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2020_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Import_2020_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2021_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2022_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Import_2023_BeforeRedef_17sch_metadata.json │ │ ├── Summary_IndustryCodeName_2012_metadata.json │ │ ├── Summary_IndustryCodeName_2017_metadata.json │ │ ├── Summary_Make_2010_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2010_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2011_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2011_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2012_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2012_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2012_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2012_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2013_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2013_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2013_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2013_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2014_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2014_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2014_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2014_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2015_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2015_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2015_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2015_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2016_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2016_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2016_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2016_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2017_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2017_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2017_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2017_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2018_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2018_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2018_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2018_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2019_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2019_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2019_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2019_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2020_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2020_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2020_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2020_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2021_AfterRedef_12sch_metadata.json │ │ ├── Summary_Make_2021_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2021_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Make_2021_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2022_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2022_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Make_2023_AfterRedef_17sch_metadata.json │ │ ├── Summary_Make_2023_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Supply_2010_12sch_metadata.json │ │ ├── Summary_Supply_2011_12sch_metadata.json │ │ ├── Summary_Supply_2012_12sch_metadata.json │ │ ├── Summary_Supply_2012_17sch_metadata.json │ │ ├── Summary_Supply_2013_12sch_metadata.json │ │ ├── Summary_Supply_2013_17sch_metadata.json │ │ ├── Summary_Supply_2014_12sch_metadata.json │ │ ├── Summary_Supply_2014_17sch_metadata.json │ │ ├── Summary_Supply_2015_12sch_metadata.json │ │ ├── Summary_Supply_2015_17sch_metadata.json │ │ ├── Summary_Supply_2016_12sch_metadata.json │ │ ├── Summary_Supply_2016_17sch_metadata.json │ │ ├── Summary_Supply_2017_12sch_metadata.json │ │ ├── Summary_Supply_2017_17sch_metadata.json │ │ ├── Summary_Supply_2018_12sch_metadata.json │ │ ├── Summary_Supply_2018_17sch_metadata.json │ │ ├── Summary_Supply_2019_12sch_metadata.json │ │ ├── Summary_Supply_2019_17sch_metadata.json │ │ ├── Summary_Supply_2020_12sch_metadata.json │ │ ├── Summary_Supply_2020_17sch_metadata.json │ │ ├── Summary_Supply_2021_17sch_metadata.json │ │ ├── Summary_Supply_2022_17sch_metadata.json │ │ ├── Summary_Supply_2023_17sch_metadata.json │ │ ├── Summary_Use_2010_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2010_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2011_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2011_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2012_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2012_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2012_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2012_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2012_PUR_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2013_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2013_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2013_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2013_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2014_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2014_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2014_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2014_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2015_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2015_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2015_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2015_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2016_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2016_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2016_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2016_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2017_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2017_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2017_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2017_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2017_PUR_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2018_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2018_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2018_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2018_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2019_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2019_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2019_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2019_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2020_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2020_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2020_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2020_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2021_PRO_AfterRedef_12sch_metadata.json │ │ ├── Summary_Use_2021_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2021_PRO_BeforeRedef_12sch_metadata.json │ │ ├── Summary_Use_2021_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2022_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2022_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_2023_PRO_AfterRedef_17sch_metadata.json │ │ ├── Summary_Use_2023_PRO_BeforeRedef_17sch_metadata.json │ │ ├── Summary_Use_SUT_2010_12sch_metadata.json │ │ ├── Summary_Use_SUT_2011_12sch_metadata.json │ │ ├── Summary_Use_SUT_2012_12sch_metadata.json │ │ ├── Summary_Use_SUT_2012_17sch_metadata.json │ │ ├── Summary_Use_SUT_2013_12sch_metadata.json │ │ ├── Summary_Use_SUT_2013_17sch_metadata.json │ │ ├── Summary_Use_SUT_2014_12sch_metadata.json │ │ ├── Summary_Use_SUT_2014_17sch_metadata.json │ │ ├── Summary_Use_SUT_2015_12sch_metadata.json │ │ ├── Summary_Use_SUT_2015_17sch_metadata.json │ │ ├── Summary_Use_SUT_2016_12sch_metadata.json │ │ ├── Summary_Use_SUT_2016_17sch_metadata.json │ │ ├── Summary_Use_SUT_2017_12sch_metadata.json │ │ ├── Summary_Use_SUT_2017_17sch_metadata.json │ │ ├── Summary_Use_SUT_2018_12sch_metadata.json │ │ ├── Summary_Use_SUT_2018_17sch_metadata.json │ │ ├── Summary_Use_SUT_2019_12sch_metadata.json │ │ ├── Summary_Use_SUT_2019_17sch_metadata.json │ │ ├── Summary_Use_SUT_2020_12sch_metadata.json │ │ ├── Summary_Use_SUT_2020_17sch_metadata.json │ │ ├── Summary_Use_SUT_2021_17sch_metadata.json │ │ ├── Summary_Use_SUT_2022_17sch_metadata.json │ │ ├── Summary_Use_SUT_2023_17sch_metadata.json │ │ ├── Summary_ValueAddedCodeName_2012_metadata.json │ │ ├── Summary_ValueAddedCodeName_2017_metadata.json │ │ ├── Summary_ValueAdded_IO_12sch_metadata.json │ │ └── Summary_ValueAdded_IO_17sch_metadata.json │ └── modelspecs │ │ ├── GAEEIOv1.0-GHG-19.yml │ │ ├── GAEEIOv1.3-pecan-22.yml │ │ ├── USEEIOv2.0.1-411.yml │ │ ├── USEEIOv2.3-GHG.yml │ │ └── USEEIOv2.3-s-GHG-19.yml └── img │ ├── logo.png │ └── ranking_direct_prod_final_cons_v2.0.1.png ├── man ├── DataSourceConfiguration.Rd ├── DemandConfiguration.Rd ├── DemandVectorFunctionRegistry.Rd ├── Detail_CPI_IO.Rd ├── Detail_CPI_IO_17sch.Rd ├── Detail_CommodityCodeName_2012.Rd ├── Detail_CommodityCodeName_2017.Rd ├── Detail_FinalDemandCodeName_2012.Rd ├── Detail_FinalDemandCodeName_2017.Rd ├── Detail_GrossOutput_IO.Rd ├── Detail_GrossOutput_IO_17sch.Rd ├── Detail_Import_2012_BeforeRedef.Rd ├── Detail_Import_2012_BeforeRedef_17sch.Rd ├── Detail_Import_2017_BeforeRedef_17sch.Rd ├── Detail_IndustryCodeName_2012.Rd ├── Detail_IndustryCodeName_2017.Rd ├── Detail_Make_2012_AfterRedef.Rd ├── Detail_Make_2012_BeforeRedef.Rd ├── Detail_Make_2012_BeforeRedef_17sch.Rd ├── Detail_Make_2017_AfterRedef_17sch.Rd ├── Detail_Make_2017_BeforeRedef_17sch.Rd ├── Detail_Margins_2012_BeforeRedef.Rd ├── Detail_Margins_2012_BeforeRedef_17sch.Rd ├── Detail_Margins_2017_BeforeRedef_17sch.Rd ├── Detail_Supply_2012.Rd ├── Detail_Supply_2012_17sch.Rd ├── Detail_Supply_2017_17sch.Rd ├── Detail_Use_2012_PRO_AfterRedef.Rd ├── Detail_Use_2012_PRO_BeforeRedef.Rd ├── Detail_Use_2012_PRO_BeforeRedef_17sch.Rd ├── Detail_Use_2012_PUR_AfterRedef.Rd ├── Detail_Use_2012_PUR_BeforeRedef.Rd ├── Detail_Use_2017_PRO_AfterRedef_17sch.Rd ├── Detail_Use_2017_PRO_BeforeRedef_17sch.Rd ├── Detail_Use_2017_PUR_AfterRedef_17sch.Rd ├── Detail_Use_2017_PUR_BeforeRedef_17sch.Rd ├── Detail_Use_SUT_2012.Rd ├── Detail_Use_SUT_2012_17sch.Rd ├── Detail_Use_SUT_2017_17sch.Rd ├── Detail_ValueAddedCodeName_2012.Rd ├── Detail_ValueAddedCodeName_2017.Rd ├── IndicatorConfiguration.Rd ├── MasterCrosswalk.Rd ├── MasterCrosswalk2007.Rd ├── MasterCrosswalk2012.Rd ├── MasterCrosswalk2017.Rd ├── ModelConfiguration.Rd ├── RAS.Rd ├── SatelliteTableConfiguration.Rd ├── Sector_CPI_IO.Rd ├── Sector_CPI_IO_17sch.Rd ├── Sector_CommodityCodeName_2012.Rd ├── Sector_CommodityCodeName_2017.Rd ├── Sector_FinalDemandCodeName_2012.Rd ├── Sector_FinalDemandCodeName_2017.Rd ├── Sector_GrossOutput_IO.Rd ├── Sector_GrossOutput_IO_17sch.Rd ├── Sector_IndustryCodeName_2012.Rd ├── Sector_IndustryCodeName_2017.Rd ├── Sector_ValueAddedCodeName_2012.Rd ├── Sector_ValueAddedCodeName_2017.Rd ├── Sector_ValueAdded_IO.Rd ├── Sector_ValueAdded_IO_17sch.Rd ├── Summary_CPI_IO.Rd ├── Summary_CPI_IO_17sch.Rd ├── Summary_CommodityCodeName_2012.Rd ├── Summary_CommodityCodeName_2017.Rd ├── Summary_FinalDemandCodeName_2012.Rd ├── Summary_FinalDemandCodeName_2017.Rd ├── Summary_GrossOutput_IO.Rd ├── Summary_GrossOutput_IO_17sch.Rd ├── Summary_Import_2010_BeforeRedef.Rd ├── Summary_Import_2011_BeforeRedef.Rd ├── Summary_Import_2012_BeforeRedef.Rd ├── Summary_Import_2012_BeforeRedef_17sch.Rd ├── Summary_Import_2013_BeforeRedef.Rd ├── Summary_Import_2013_BeforeRedef_17sch.Rd ├── Summary_Import_2014_BeforeRedef.Rd ├── Summary_Import_2014_BeforeRedef_17sch.Rd ├── Summary_Import_2015_BeforeRedef.Rd ├── Summary_Import_2015_BeforeRedef_17sch.Rd ├── Summary_Import_2016_BeforeRedef.Rd ├── Summary_Import_2016_BeforeRedef_17sch.Rd ├── Summary_Import_2017_BeforeRedef.Rd ├── Summary_Import_2017_BeforeRedef_17sch.Rd ├── Summary_Import_2018_BeforeRedef.Rd ├── Summary_Import_2018_BeforeRedef_17sch.Rd ├── Summary_Import_2019_BeforeRedef.Rd ├── Summary_Import_2019_BeforeRedef_17sch.Rd ├── Summary_Import_2020_BeforeRedef.Rd ├── Summary_Import_2020_BeforeRedef_17sch.Rd ├── Summary_Import_2021_BeforeRedef_17sch.Rd ├── Summary_Import_2022_BeforeRedef_17sch.Rd ├── Summary_Import_2023_BeforeRedef_17sch.Rd ├── Summary_IndustryCodeName_2012.Rd ├── Summary_IndustryCodeName_2017.Rd ├── Summary_Make_2010_AfterRedef.Rd ├── Summary_Make_2010_BeforeRedef.Rd ├── Summary_Make_2011_AfterRedef.Rd ├── Summary_Make_2011_BeforeRedef.Rd ├── Summary_Make_2012_AfterRedef.Rd ├── Summary_Make_2012_AfterRedef_17sch.Rd ├── Summary_Make_2012_BeforeRedef.Rd ├── Summary_Make_2012_BeforeRedef_17sch.Rd ├── Summary_Make_2013_AfterRedef.Rd ├── Summary_Make_2013_AfterRedef_17sch.Rd ├── Summary_Make_2013_BeforeRedef.Rd ├── Summary_Make_2013_BeforeRedef_17sch.Rd ├── Summary_Make_2014_AfterRedef.Rd ├── Summary_Make_2014_AfterRedef_17sch.Rd ├── Summary_Make_2014_BeforeRedef.Rd ├── Summary_Make_2014_BeforeRedef_17sch.Rd ├── Summary_Make_2015_AfterRedef.Rd ├── Summary_Make_2015_AfterRedef_17sch.Rd ├── Summary_Make_2015_BeforeRedef.Rd ├── Summary_Make_2015_BeforeRedef_17sch.Rd ├── Summary_Make_2016_AfterRedef.Rd ├── Summary_Make_2016_AfterRedef_17sch.Rd ├── Summary_Make_2016_BeforeRedef.Rd ├── Summary_Make_2016_BeforeRedef_17sch.Rd ├── Summary_Make_2017_AfterRedef.Rd ├── Summary_Make_2017_AfterRedef_17sch.Rd ├── Summary_Make_2017_BeforeRedef.Rd ├── Summary_Make_2017_BeforeRedef_17sch.Rd ├── Summary_Make_2018_AfterRedef.Rd ├── Summary_Make_2018_AfterRedef_17sch.Rd ├── Summary_Make_2018_BeforeRedef.Rd ├── Summary_Make_2018_BeforeRedef_17sch.Rd ├── Summary_Make_2019_AfterRedef.Rd ├── Summary_Make_2019_AfterRedef_17sch.Rd ├── Summary_Make_2019_BeforeRedef.Rd ├── Summary_Make_2019_BeforeRedef_17sch.Rd ├── Summary_Make_2020_AfterRedef.Rd ├── Summary_Make_2020_AfterRedef_17sch.Rd ├── Summary_Make_2020_BeforeRedef.Rd ├── Summary_Make_2020_BeforeRedef_17sch.Rd ├── Summary_Make_2021_AfterRedef.Rd ├── Summary_Make_2021_AfterRedef_17sch.Rd ├── Summary_Make_2021_BeforeRedef.Rd ├── Summary_Make_2021_BeforeRedef_17sch.Rd ├── Summary_Make_2022_AfterRedef_17sch.Rd ├── Summary_Make_2022_BeforeRedef_17sch.Rd ├── Summary_Make_2023_AfterRedef_17sch.Rd ├── Summary_Make_2023_BeforeRedef_17sch.Rd ├── Summary_Supply_2010.Rd ├── Summary_Supply_2011.Rd ├── Summary_Supply_2012.Rd ├── Summary_Supply_2012_17sch.Rd ├── Summary_Supply_2013.Rd ├── Summary_Supply_2013_17sch.Rd ├── Summary_Supply_2014.Rd ├── Summary_Supply_2014_17sch.Rd ├── Summary_Supply_2015.Rd ├── Summary_Supply_2015_17sch.Rd ├── Summary_Supply_2016.Rd ├── Summary_Supply_2016_17sch.Rd ├── Summary_Supply_2017.Rd ├── Summary_Supply_2017_17sch.Rd ├── Summary_Supply_2018.Rd ├── Summary_Supply_2018_17sch.Rd ├── Summary_Supply_2019.Rd ├── Summary_Supply_2019_17sch.Rd ├── Summary_Supply_2020.Rd ├── Summary_Supply_2020_17sch.Rd ├── Summary_Supply_2021_17sch.Rd ├── Summary_Supply_2022_17sch.Rd ├── Summary_Supply_2023_17sch.Rd ├── Summary_Use_2010_PRO_AfterRedef.Rd ├── Summary_Use_2010_PRO_BeforeRedef.Rd ├── Summary_Use_2011_PRO_AfterRedef.Rd ├── Summary_Use_2011_PRO_BeforeRedef.Rd ├── Summary_Use_2012_PRO_AfterRedef.Rd ├── Summary_Use_2012_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2012_PRO_BeforeRedef.Rd ├── Summary_Use_2012_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2012_PUR_BeforeRedef.Rd ├── Summary_Use_2013_PRO_AfterRedef.Rd ├── Summary_Use_2013_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2013_PRO_BeforeRedef.Rd ├── Summary_Use_2013_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2014_PRO_AfterRedef.Rd ├── Summary_Use_2014_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2014_PRO_BeforeRedef.Rd ├── Summary_Use_2014_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2015_PRO_AfterRedef.Rd ├── Summary_Use_2015_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2015_PRO_BeforeRedef.Rd ├── Summary_Use_2015_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2016_PRO_AfterRedef.Rd ├── Summary_Use_2016_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2016_PRO_BeforeRedef.Rd ├── Summary_Use_2016_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2017_PRO_AfterRedef.Rd ├── Summary_Use_2017_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2017_PRO_BeforeRedef.Rd ├── Summary_Use_2017_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2017_PUR_BeforeRedef_17sch.Rd ├── Summary_Use_2018_PRO_AfterRedef.Rd ├── Summary_Use_2018_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2018_PRO_BeforeRedef.Rd ├── Summary_Use_2018_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2019_PRO_AfterRedef.Rd ├── Summary_Use_2019_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2019_PRO_BeforeRedef.Rd ├── Summary_Use_2019_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2020_PRO_AfterRedef.Rd ├── Summary_Use_2020_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2020_PRO_BeforeRedef.Rd ├── Summary_Use_2020_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2021_PRO_AfterRedef.Rd ├── Summary_Use_2021_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2021_PRO_BeforeRedef.Rd ├── Summary_Use_2021_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2022_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2022_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_2023_PRO_AfterRedef_17sch.Rd ├── Summary_Use_2023_PRO_BeforeRedef_17sch.Rd ├── Summary_Use_SUT_2010.Rd ├── Summary_Use_SUT_2011.Rd ├── Summary_Use_SUT_2012.Rd ├── Summary_Use_SUT_2012_17sch.Rd ├── Summary_Use_SUT_2013.Rd ├── Summary_Use_SUT_2013_17sch.Rd ├── Summary_Use_SUT_2014.Rd ├── Summary_Use_SUT_2014_17sch.Rd ├── Summary_Use_SUT_2015.Rd ├── Summary_Use_SUT_2015_17sch.Rd ├── Summary_Use_SUT_2016.Rd ├── Summary_Use_SUT_2016_17sch.Rd ├── Summary_Use_SUT_2017.Rd ├── Summary_Use_SUT_2017_17sch.Rd ├── Summary_Use_SUT_2018.Rd ├── Summary_Use_SUT_2018_17sch.Rd ├── Summary_Use_SUT_2019.Rd ├── Summary_Use_SUT_2019_17sch.Rd ├── Summary_Use_SUT_2020.Rd ├── Summary_Use_SUT_2020_17sch.Rd ├── Summary_Use_SUT_2021_17sch.Rd ├── Summary_Use_SUT_2022_17sch.Rd ├── Summary_Use_SUT_2023_17sch.Rd ├── Summary_ValueAddedCodeName_2012.Rd ├── Summary_ValueAddedCodeName_2017.Rd ├── Summary_ValueAdded_IO.Rd ├── Summary_ValueAdded_IO_17sch.Rd ├── addSectorsToWIOCW.Rd ├── adjustITAwithWIOSectors.Rd ├── adjustMarginswithWIOSectors.Rd ├── adjustMultiYearObjectsForMUIO.Rd ├── adjustMultiYearObjectsForWIO.Rd ├── adjustMultiplierPriceType.Rd ├── adjustMultiplierPriceYear.Rd ├── adjustOutputbyCPI.Rd ├── adjustResultMatrixPrice.Rd ├── aggregateMakeTable.Rd ├── aggregateMasterCrosswalk.Rd ├── aggregateMatrix.Rd ├── aggregateModel.Rd ├── aggregateMultiYearCPI.Rd ├── aggregateMultiYearOutput.Rd ├── aggregateResultMatrix.Rd ├── aggregateResultMatrixbyRow.Rd ├── aggregateSatelliteTable.Rd ├── aggregateSector.Rd ├── aggregateSectorsinTBS.Rd ├── aggregateUseTable.Rd ├── aggregateVA.Rd ├── applyAllocation.Rd ├── applyRAS.Rd ├── assembleTable.Rd ├── assembleWIOModel.Rd ├── balanceDisagg.Rd ├── barplotFloworImpactFractionbyRegion.Rd ├── barplotIndicatorScoresbySector.Rd ├── buildDisaggFullUse.Rd ├── buildEconomicMatrices.Rd ├── buildIOModel.Rd ├── buildModel.Rd ├── buildModelwithImportFactors.Rd ├── buildPriceMatrices.Rd ├── buildTwoRegionModels.Rd ├── calculateBalancedDomesticTables.Rd ├── calculateBasicbyProducerPriceRatio.Rd ├── calculateDefaultIntersection.Rd ├── calculateDirectPerspectiveLCI.Rd ├── calculateDirectPerspectiveLCIA.Rd ├── calculateEEIOModel.Rd ├── calculateFinalPerspectiveLCI.Rd ├── calculateFinalPerspectiveLCIA.Rd ├── calculateFlowContributiontoImpact.Rd ├── calculateGhoshB.Rd ├── calculateGhoshG.Rd ├── calculateHouseholdEmissions.Rd ├── calculateIndicatorScoresforTotalsBySector.Rd ├── calculateIndustryCommodityOutput.Rd ├── calculateLeontiefInverse.Rd ├── calculateMarginSectorImpacts.Rd ├── calculateModelIOYearbyYearPriceRatio.Rd ├── calculateMwithImportFactors.Rd ├── calculateOutputRatio.Rd ├── calculatePercentContributiontoImpact.Rd ├── calculateProducerbyPurchaserPriceRatio.Rd ├── calculateProductofLeontiefAndProductionDemand.Rd ├── calculateResultsWithExternalFactors.Rd ├── calculateSectorContributiontoImpact.Rd ├── calculateSectorPurchasedbySectorSourcedImpact.Rd ├── calculateStandardResults.Rd ├── calculateTotalImpactbyTier1Purchases.Rd ├── calculateWIOOutputs.Rd ├── castImportFactors.Rd ├── checkDuplicateFlowsBySector.Rd ├── checkIndicatorforFlows.Rd ├── checkNamesandOrdering.Rd ├── checkSatelliteFlowLoss.Rd ├── checkWIOBalance.Rd ├── collapseTBS.Rd ├── compare2RVectorTotals.Rd ├── compareCommodityOutputXMarketShareandIndustryOutputwithCPITransformation.Rd ├── compareCommodityOutputandDomesticUseplusProductionDemand.Rd ├── compareEandLCIResult.Rd ├── compareFlowTotals.Rd ├── compareIndustryOutputinMakeandUse.Rd ├── compareMatrices.Rd ├── compareOutputandLeontiefXDemand.Rd ├── compareOutputfromMakeandUse.Rd ├── conformTbStoIOSchema.Rd ├── conformTbStoStandardSatTable.Rd ├── constructEEIOMatrices.Rd ├── convertSectorsToPhysical.Rd ├── convertStrEncodingLatintoASCII.Rd ├── convertUsefromPURtoBAS.Rd ├── createBfromFlowDataandOutput.Rd ├── createBlankIntersection.Rd ├── createCfromFactorsandBflows.Rd ├── createDemandID.Rd ├── createDisaggFilesFromProxyData.Rd ├── disaggregateCPI.Rd ├── disaggregateCol.Rd ├── disaggregateCols.Rd ├── disaggregateFinalDemand.Rd ├── disaggregateInternationalTradeAdjustment.Rd ├── disaggregateMakeTable.Rd ├── disaggregateMargins.Rd ├── disaggregateMasterCrosswalk.Rd ├── disaggregateModel.Rd ├── disaggregateMultiYearOutput.Rd ├── disaggregateRow.Rd ├── disaggregateRows.Rd ├── disaggregateSatelliteSubsetByRatio.Rd ├── disaggregateSatelliteTable.Rd ├── disaggregateSectorDFs.Rd ├── disaggregateSetup.Rd ├── disaggregateTaxLessSubsidies.Rd ├── disaggregateTotalToDirectAndTier1.Rd ├── disaggregateUseTable.Rd ├── disaggregateVA.Rd ├── disaggregatedRatios.Rd ├── downloadDataCommonsfile.Rd ├── downloadNAICS2to6DigitsFile.Rd ├── extractAndFormatDemandVector.Rd ├── extractValidationResult.Rd ├── findModelConfigurationFiles.Rd ├── flowmapping.Rd ├── formatDemandVector.Rd ├── formatLocationforStateModels.Rd ├── formatValidationResult.Rd ├── generate2RDirectRequirementsfromUseWithTrade.Rd ├── generateCbSfromTbSandModel.Rd ├── generateChiMatrix.Rd ├── generateCommodityMixMatrix.Rd ├── generateDirectRequirementsfromUse.Rd ├── generateDomesticUse.Rd ├── generateFlowtoDollarCoefficient.Rd ├── generateInternationalTradeAdjustmentVector.Rd ├── generateMarketSharesfromMake.Rd ├── generateModelIdentifier.Rd ├── generateModelSectorSchema.Rd ├── generateTaxLessSubsidiesTable.Rd ├── generateTbSfromSatSpec.Rd ├── getAggregationSpecs.Rd ├── getBEASectorColorMapping.Rd ├── getCombinedImpactMethods.Rd ├── getConfiguration.Rd ├── getDQfields.Rd ├── getDefaultAllocationPercentages.Rd ├── getDisaggCommodityPercentages.Rd ├── getDisaggIndustryPercentages.Rd ├── getDisaggregationSpecs.Rd ├── getFlowbySector.Rd ├── getFlowbySectorCollapsed.Rd ├── getHybridizationFiles.Rd ├── getHybridizationSpecs.Rd ├── getImpactMethod.Rd ├── getIndex.Rd ├── getIndicatorColorMapping.Rd ├── getInputFilePath.Rd ├── getMUIOSectors.Rd ├── getMarginsTable.Rd ├── getModelCrosswalk.Rd ├── getNAICS2012to2007Concordances.Rd ├── getNAICS2012to2017Concordances.Rd ├── getNAICS2to6Digits.Rd ├── getNAICS2to6DigitsCodeName.Rd ├── getNAICS7to10Digits.Rd ├── getNAICS7to10DigitsCodeName.Rd ├── getNAICSCodeName.Rd ├── getNAICSCrosswalk.Rd ├── getNAICStoBEAAllocation.Rd ├── getScalingVector.Rd ├── getSchemaCode.Rd ├── getSectorLinkages.Rd ├── getStandardSatelliteTableFormat.Rd ├── getTwoRegionIOData.Rd ├── getValueAddedTotalsbySector.Rd ├── getVectorOfCodes.Rd ├── getWIOFiles.Rd ├── getWIOSpecs.Rd ├── groupandsumTbSbyFlowLoc.Rd ├── heatmapSatelliteTableCoverage.Rd ├── heatmapSectorRanking.Rd ├── hybridizeAMatrix.Rd ├── hybridizeBMatrix.Rd ├── hybridizeModelObjects.Rd ├── includeFullUseWIO.Rd ├── includeMakeWIO.Rd ├── includeWIOSectorDFs.Rd ├── initializeModel.Rd ├── initializeWIOObjects.Rd ├── isDemandVectorValid.Rd ├── joinStringswithSlashes.Rd ├── loadBEAtables.Rd ├── loadChainPriceIndexTable.Rd ├── loadCommodityandIndustryOutput.Rd ├── loadDataCommonsfile.Rd ├── loadDefaultDemandVectorMeta.Rd ├── loadDemandVectors.Rd ├── loadExternalImportFactors.Rd ├── loadFactors.Rd ├── loadIOData.Rd ├── loadIOcodes.Rd ├── loadIOmeta.Rd ├── loadImportMatrix.Rd ├── loadIndicators.Rd ├── loadLCIAfactors.Rd ├── loadNationalGrossOutputTable.Rd ├── loadNationalIOData.Rd ├── loadSatTables.Rd ├── loadTwoRegionStateIOtables.Rd ├── loadandbuildIndicators.Rd ├── loadandbuildSatelliteTables.Rd ├── lookupDQBoundScore.Rd ├── mapFIPS5toLocationNames.Rd ├── mapFlowTotalsbySectorandLocationfromNAICStoBEA.Rd ├── mapFlowTotalsbySectorfromBEASchema2007to2012.Rd ├── mapListbyName.Rd ├── mapLocationCodestoNames.Rd ├── matrices.Rd ├── normalizeIOTransactions.Rd ├── normalizeResultMatrixByTotalImpacts.Rd ├── plotMatrixCoefficient.Rd ├── prepare2RDemand.Rd ├── prepareConsumptionDemand.Rd ├── prepareDemandVectorForImportResults.Rd ├── prepareDemandVectorForStandardResults.Rd ├── prepareDomesticConsumptionDemand.Rd ├── prepareDomesticProductionDemand.Rd ├── prepareEfromtbs.Rd ├── prepareFlowBySectorCollapsed.Rd ├── prepareHouseholdDemand.Rd ├── prepareImportConsumptionDemand.Rd ├── prepareImportProductionDemand.Rd ├── prepareLCIAmethodforIndicators.Rd ├── prepareModelSectorCrosswalk.Rd ├── prepareProductionDemand.Rd ├── prepareTwoRegionDisaggregation.Rd ├── prepareWIODFfromFBS.Rd ├── prepareWriteDirs.Rd ├── print2RValidationResults.Rd ├── printValidationResults.Rd ├── processImportFactors.Rd ├── readImportFactorTable.Rd ├── removeExtraSpaces.Rd ├── removeHybridProcesses.Rd ├── removeMissingSectors.Rd ├── removeModelSectors.Rd ├── removeNumberinSlashes.Rd ├── removeRowsFromList.Rd ├── removeSectorsFromWIOCW.Rd ├── reorderModelSectors.Rd ├── reorderPhysicalSectors.Rd ├── reorderWIOSectors.Rd ├── replaceNonewithNA.Rd ├── scoreContextualDQ.Rd ├── scoreTemporalDQ.Rd ├── seeAvailableModels.Rd ├── setCommonYearforFlow.Rd ├── setDQScoringBounds.Rd ├── setToleranceforRAS.Rd ├── setWriteDirs.Rd ├── specifiedMakeDisagg.Rd ├── specifiedUseDisagg.Rd ├── stackSatelliteTables.Rd ├── standardizeandcastSatelliteTable.Rd ├── startLogging.Rd ├── subsetWIOSectors.Rd ├── sumDemandCols.Rd ├── sumforConsumption.Rd ├── testCalculationFunctions.Rd ├── testVisualizationFunctions.Rd ├── transformBEASectorToDFInput.Rd ├── transformDirectRequirementswithMarketShares.Rd ├── transformFinalDemandwithMarketShares.Rd ├── transformIndustryCPItoCommodityCPIforYear.Rd ├── transformIndustryOutputtoCommodityOutputforYear.Rd ├── uniformDisagg.Rd ├── validate2RCommodityTotals.Rd ├── validateHouseholdEmissions.Rd ├── validateImportFactorsApproach.Rd ├── validateResult.Rd ├── writeDatatoRDA.Rd ├── writeMatrixasBinFile.Rd ├── writeMetadatatoJSON.Rd ├── writeModelDemandstoJSON.Rd ├── writeModelMatrices.Rd ├── writeModelMetadata.Rd ├── writeModelforAPI.Rd ├── writeModeltoXLSX.Rd ├── writeSectorCrosswalk.Rd └── writeSessionInfotoFile.Rd ├── tests ├── README.md ├── aggspecs │ └── ElectricityAggregationDetail.yml ├── disaggspecs │ ├── ElectricityDisaggregationDetail.yml │ ├── ElectricityDisaggregationDetail_Make.csv │ ├── ElectricityDisaggregationDetail_Use.csv │ ├── ElectricityDisaggregation_Env.csv │ ├── ElectricityDisaggregation_Sectors.csv │ ├── WasteDisaggregationSummary.yml │ ├── WasteDisaggregationSummary2017.yml │ ├── WasteDisaggregationSummary2017_Make.csv │ ├── WasteDisaggregationSummary2017_Use.csv │ ├── WasteDisaggregationSummary_Make.csv │ └── WasteDisaggregationSummary_Use.csv ├── hybridizationspecs │ ├── NGCombustion_env.csv │ ├── NGCombustion_tech.csv │ └── NG_Combustion.yml ├── modelspecs │ ├── USEEIOv2.0-GHG-NGCombustion.yml │ ├── USEEIOv2.0-GHG-NGMUIO.yml │ ├── USEEIOv2.0-GHG.yml │ ├── USEEIOv2.0-s-GHG-19.yml │ └── USEEIOv2.2-GHG.yml ├── muiospecs │ ├── NGMUIO.yml │ └── NGMUIO_Sectors.csv └── test_model_build.R └── useeior.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/data_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/ISSUE_TEMPLATE/data_update.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/data_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/workflows/data_update.yaml -------------------------------------------------------------------------------- /.github/workflows/generate-2R-model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/workflows/generate-2R-model.yaml -------------------------------------------------------------------------------- /.github/workflows/save-BEA-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/workflows/save-BEA-data.yaml -------------------------------------------------------------------------------- /.github/workflows/save-annual-BEA-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.github/workflows/save-annual-BEA-data.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/.zenodo.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/AdjustPrice.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/AdjustPrice.R -------------------------------------------------------------------------------- /R/AggregationFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/AggregationFunctions.R -------------------------------------------------------------------------------- /R/BuildModel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/BuildModel.R -------------------------------------------------------------------------------- /R/CalculationFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/CalculationFunctions.R -------------------------------------------------------------------------------- /R/CompareModels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/CompareModels.R -------------------------------------------------------------------------------- /R/ConfigDocumentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/ConfigDocumentation.R -------------------------------------------------------------------------------- /R/ConfigurationFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/ConfigurationFunctions.R -------------------------------------------------------------------------------- /R/CrosswalkFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/CrosswalkFunctions.R -------------------------------------------------------------------------------- /R/DataDocumentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/DataDocumentation.R -------------------------------------------------------------------------------- /R/DataQualityFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/DataQualityFunctions.R -------------------------------------------------------------------------------- /R/DemandFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/DemandFunctions.R -------------------------------------------------------------------------------- /R/DisaggregateFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/DisaggregateFunctions.R -------------------------------------------------------------------------------- /R/ExternalImportFactors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/ExternalImportFactors.R -------------------------------------------------------------------------------- /R/FlowMappingFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/FlowMappingFunctions.R -------------------------------------------------------------------------------- /R/FlowsaFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/FlowsaFunctions.R -------------------------------------------------------------------------------- /R/Hybridization.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/Hybridization.R -------------------------------------------------------------------------------- /R/IOFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/IOFunctions.R -------------------------------------------------------------------------------- /R/InitializeModel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/InitializeModel.R -------------------------------------------------------------------------------- /R/LCIAfmtFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LCIAfmtFunctions.R -------------------------------------------------------------------------------- /R/LoadDemandVectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadDemandVectors.R -------------------------------------------------------------------------------- /R/LoadGOandCPI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadGOandCPI.R -------------------------------------------------------------------------------- /R/LoadIOTables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadIOTables.R -------------------------------------------------------------------------------- /R/LoadIndicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadIndicators.R -------------------------------------------------------------------------------- /R/LoadMargins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadMargins.R -------------------------------------------------------------------------------- /R/LoadSatellites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/LoadSatellites.R -------------------------------------------------------------------------------- /R/MUIOFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/MUIOFunctions.R -------------------------------------------------------------------------------- /R/SatelliteFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/SatelliteFunctions.R -------------------------------------------------------------------------------- /R/StateiorFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/StateiorFunctions.R -------------------------------------------------------------------------------- /R/UtilityFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/UtilityFunctions.R -------------------------------------------------------------------------------- /R/ValidateModel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/ValidateModel.R -------------------------------------------------------------------------------- /R/VisualizationFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/VisualizationFunctions.R -------------------------------------------------------------------------------- /R/WIOFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/WIOFunctions.R -------------------------------------------------------------------------------- /R/WriteModel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/R/WriteModel.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/BEAData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data-raw/BEAData.R -------------------------------------------------------------------------------- /data-raw/BEAData_Detail.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data-raw/BEAData_Detail.R -------------------------------------------------------------------------------- /data-raw/BEAData_Support.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data-raw/BEAData_Support.R -------------------------------------------------------------------------------- /data-raw/CoAData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data-raw/CoAData.R -------------------------------------------------------------------------------- /data-raw/MasterCrosswalk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data-raw/MasterCrosswalk.R -------------------------------------------------------------------------------- /data/DataSourceConfiguration.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/DataSourceConfiguration.rda -------------------------------------------------------------------------------- /data/DemandConfiguration.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/DemandConfiguration.rda -------------------------------------------------------------------------------- /data/Detail_CPI_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_CPI_IO_12sch.rda -------------------------------------------------------------------------------- /data/Detail_CPI_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_CPI_IO_17sch.rda -------------------------------------------------------------------------------- /data/Detail_CommodityCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_CommodityCodeName_2012.rda -------------------------------------------------------------------------------- /data/Detail_CommodityCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_CommodityCodeName_2017.rda -------------------------------------------------------------------------------- /data/Detail_FinalDemandCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_FinalDemandCodeName_2012.rda -------------------------------------------------------------------------------- /data/Detail_FinalDemandCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_FinalDemandCodeName_2017.rda -------------------------------------------------------------------------------- /data/Detail_GrossOutput_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_GrossOutput_IO_12sch.rda -------------------------------------------------------------------------------- /data/Detail_GrossOutput_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_GrossOutput_IO_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Import_2012_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Import_2012_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Import_2012_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Import_2012_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Import_2017_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Import_2017_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_IndustryCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_IndustryCodeName_2012.rda -------------------------------------------------------------------------------- /data/Detail_IndustryCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_IndustryCodeName_2017.rda -------------------------------------------------------------------------------- /data/Detail_Make_2012_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Make_2012_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Make_2012_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Make_2012_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Make_2012_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Make_2012_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Make_2017_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Make_2017_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Make_2017_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Make_2017_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Margins_2012_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Margins_2012_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Margins_2012_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Margins_2012_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Margins_2017_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Margins_2017_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Supply_2012_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Supply_2012_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Supply_2012_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Supply_2012_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Supply_2017_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Supply_2017_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2012_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2012_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2012_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2012_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2012_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2012_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2012_PUR_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2012_PUR_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2012_PUR_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2012_PUR_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2017_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2017_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2017_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2017_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2017_PUR_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2017_PUR_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_2017_PUR_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_2017_PUR_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_SUT_2012_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_SUT_2012_12sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_SUT_2012_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_SUT_2012_17sch.rda -------------------------------------------------------------------------------- /data/Detail_Use_SUT_2017_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_Use_SUT_2017_17sch.rda -------------------------------------------------------------------------------- /data/Detail_ValueAddedCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_ValueAddedCodeName_2012.rda -------------------------------------------------------------------------------- /data/Detail_ValueAddedCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Detail_ValueAddedCodeName_2017.rda -------------------------------------------------------------------------------- /data/IndicatorConfiguration.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/IndicatorConfiguration.rda -------------------------------------------------------------------------------- /data/MasterCrosswalk.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/MasterCrosswalk.rda -------------------------------------------------------------------------------- /data/MasterCrosswalk2007.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/MasterCrosswalk2007.rda -------------------------------------------------------------------------------- /data/MasterCrosswalk2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/MasterCrosswalk2012.rda -------------------------------------------------------------------------------- /data/MasterCrosswalk2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/MasterCrosswalk2017.rda -------------------------------------------------------------------------------- /data/ModelConfiguration.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/ModelConfiguration.rda -------------------------------------------------------------------------------- /data/SatelliteTableConfiguration.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/SatelliteTableConfiguration.rda -------------------------------------------------------------------------------- /data/Sector_CPI_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_CPI_IO_12sch.rda -------------------------------------------------------------------------------- /data/Sector_CPI_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_CPI_IO_17sch.rda -------------------------------------------------------------------------------- /data/Sector_CommodityCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_CommodityCodeName_2012.rda -------------------------------------------------------------------------------- /data/Sector_CommodityCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_CommodityCodeName_2017.rda -------------------------------------------------------------------------------- /data/Sector_FinalDemandCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_FinalDemandCodeName_2012.rda -------------------------------------------------------------------------------- /data/Sector_FinalDemandCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_FinalDemandCodeName_2017.rda -------------------------------------------------------------------------------- /data/Sector_GrossOutput_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_GrossOutput_IO_12sch.rda -------------------------------------------------------------------------------- /data/Sector_GrossOutput_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_GrossOutput_IO_17sch.rda -------------------------------------------------------------------------------- /data/Sector_IndustryCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_IndustryCodeName_2012.rda -------------------------------------------------------------------------------- /data/Sector_IndustryCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_IndustryCodeName_2017.rda -------------------------------------------------------------------------------- /data/Sector_ValueAddedCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_ValueAddedCodeName_2012.rda -------------------------------------------------------------------------------- /data/Sector_ValueAddedCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_ValueAddedCodeName_2017.rda -------------------------------------------------------------------------------- /data/Sector_ValueAdded_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_ValueAdded_IO_12sch.rda -------------------------------------------------------------------------------- /data/Sector_ValueAdded_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Sector_ValueAdded_IO_17sch.rda -------------------------------------------------------------------------------- /data/Summary_CPI_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_CPI_IO_12sch.rda -------------------------------------------------------------------------------- /data/Summary_CPI_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_CPI_IO_17sch.rda -------------------------------------------------------------------------------- /data/Summary_CommodityCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_CommodityCodeName_2012.rda -------------------------------------------------------------------------------- /data/Summary_CommodityCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_CommodityCodeName_2017.rda -------------------------------------------------------------------------------- /data/Summary_FinalDemandCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_FinalDemandCodeName_2012.rda -------------------------------------------------------------------------------- /data/Summary_FinalDemandCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_FinalDemandCodeName_2017.rda -------------------------------------------------------------------------------- /data/Summary_GrossOutput_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_GrossOutput_IO_12sch.rda -------------------------------------------------------------------------------- /data/Summary_GrossOutput_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_GrossOutput_IO_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2010_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2010_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2011_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2011_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2012_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2012_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2012_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2012_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2013_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2013_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2013_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2013_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2014_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2014_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2014_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2014_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2015_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2015_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2015_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2015_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2016_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2016_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2016_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2016_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2017_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2017_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2017_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2017_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2018_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2018_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2018_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2018_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2019_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2019_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2019_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2019_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2020_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2020_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2020_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2020_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2021_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2021_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2022_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2022_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Import_2023_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Import_2023_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_IndustryCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_IndustryCodeName_2012.rda -------------------------------------------------------------------------------- /data/Summary_IndustryCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_IndustryCodeName_2017.rda -------------------------------------------------------------------------------- /data/Summary_Make_2010_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2010_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2010_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2010_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2011_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2011_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2011_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2011_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2012_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2012_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2012_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2012_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2012_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2012_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2012_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2012_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2013_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2013_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2013_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2013_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2013_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2013_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2013_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2013_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2014_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2014_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2014_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2014_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2014_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2014_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2014_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2014_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2015_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2015_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2015_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2015_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2015_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2015_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2015_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2015_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2016_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2016_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2016_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2016_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2016_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2016_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2016_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2016_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2017_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2017_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2017_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2017_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2017_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2017_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2017_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2017_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2018_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2018_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2018_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2018_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2018_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2018_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2018_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2018_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2019_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2019_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2019_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2019_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2019_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2019_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2019_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2019_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2020_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2020_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2020_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2020_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2020_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2020_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2020_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2020_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2021_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2021_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2021_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2021_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2021_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2021_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2021_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2021_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2022_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2022_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2022_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2022_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2023_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2023_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Make_2023_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Make_2023_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2010_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2010_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2011_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2011_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2012_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2012_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2012_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2012_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2013_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2013_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2013_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2013_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2014_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2014_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2014_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2014_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2015_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2015_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2015_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2015_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2016_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2016_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2016_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2016_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2017_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2017_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2017_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2017_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2018_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2018_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2018_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2018_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2019_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2019_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2019_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2019_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2020_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2020_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2020_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2020_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2021_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2021_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2022_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2022_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Supply_2023_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Supply_2023_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2010_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2010_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2010_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2010_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2011_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2011_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2011_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2011_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2012_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2012_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2012_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2012_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2012_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2012_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2012_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2012_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2012_PUR_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2012_PUR_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2013_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2013_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2013_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2013_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2013_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2013_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2013_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2013_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2014_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2014_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2014_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2014_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2014_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2014_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2014_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2014_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2015_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2015_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2015_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2015_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2015_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2015_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2015_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2015_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2016_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2016_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2016_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2016_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2016_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2016_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2016_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2016_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2017_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2017_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2017_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2017_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2017_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2017_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2017_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2017_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2017_PUR_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2017_PUR_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2018_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2018_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2018_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2018_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2018_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2018_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2018_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2018_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2019_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2019_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2019_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2019_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2019_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2019_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2019_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2019_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2020_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2020_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2020_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2020_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2020_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2020_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2020_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2020_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2021_PRO_AfterRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2021_PRO_AfterRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2021_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2021_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2021_PRO_BeforeRedef_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2021_PRO_BeforeRedef_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2021_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2021_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2022_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2022_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2022_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2022_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2023_PRO_AfterRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2023_PRO_AfterRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_2023_PRO_BeforeRedef_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_2023_PRO_BeforeRedef_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2010_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2010_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2011_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2011_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2012_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2012_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2012_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2012_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2013_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2013_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2013_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2013_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2014_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2014_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2014_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2014_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2015_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2015_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2015_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2015_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2016_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2016_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2016_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2016_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2017_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2017_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2017_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2017_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2018_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2018_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2018_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2018_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2019_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2019_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2019_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2019_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2020_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2020_12sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2020_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2020_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2021_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2021_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2022_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2022_17sch.rda -------------------------------------------------------------------------------- /data/Summary_Use_SUT_2023_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_Use_SUT_2023_17sch.rda -------------------------------------------------------------------------------- /data/Summary_ValueAddedCodeName_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_ValueAddedCodeName_2012.rda -------------------------------------------------------------------------------- /data/Summary_ValueAddedCodeName_2017.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_ValueAddedCodeName_2017.rda -------------------------------------------------------------------------------- /data/Summary_ValueAdded_IO_12sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_ValueAdded_IO_12sch.rda -------------------------------------------------------------------------------- /data/Summary_ValueAdded_IO_17sch.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/data/Summary_ValueAdded_IO_17sch.rda -------------------------------------------------------------------------------- /format_specs/Calculation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/format_specs/Calculation.md -------------------------------------------------------------------------------- /format_specs/Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/format_specs/Model.md -------------------------------------------------------------------------------- /format_specs/ModelCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/format_specs/ModelCustomization.md -------------------------------------------------------------------------------- /format_specs/ModelSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/format_specs/ModelSpecification.md -------------------------------------------------------------------------------- /inst/doc/CompareModels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/CompareModels.Rmd -------------------------------------------------------------------------------- /inst/doc/CompareModels_render.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/CompareModels_render.Rmd -------------------------------------------------------------------------------- /inst/doc/Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/Example.Rmd -------------------------------------------------------------------------------- /inst/doc/ValidateModel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/ValidateModel.Rmd -------------------------------------------------------------------------------- /inst/doc/ValidateModel_render.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/ValidateModel_render.Rmd -------------------------------------------------------------------------------- /inst/doc/output/ValidateUSEEIOv2.0.1-411.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/output/ValidateUSEEIOv2.0.1-411.md -------------------------------------------------------------------------------- /inst/doc/output/ValidateUSEEIOv2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/output/ValidateUSEEIOv2.0.md -------------------------------------------------------------------------------- /inst/doc/output/ValidateUSEEIOv2.1-422.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/doc/output/ValidateUSEEIOv2.1-422.md -------------------------------------------------------------------------------- /inst/extdata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/.gitignore -------------------------------------------------------------------------------- /inst/extdata/2-digit_2012_Codes.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2-digit_2012_Codes.xls -------------------------------------------------------------------------------- /inst/extdata/2012_Detail_Schema_Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2012_Detail_Schema_Info.csv -------------------------------------------------------------------------------- /inst/extdata/2012_Sector_Schema_Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2012_Sector_Schema_Info.csv -------------------------------------------------------------------------------- /inst/extdata/2012_Summary_Schema_Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2012_Summary_Schema_Info.csv -------------------------------------------------------------------------------- /inst/extdata/2012_to_2007_NAICS.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2012_to_2007_NAICS.xls -------------------------------------------------------------------------------- /inst/extdata/2017_Detail_Schema_Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2017_Detail_Schema_Info.csv -------------------------------------------------------------------------------- /inst/extdata/2017_Summary_Schema_Info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/2017_Summary_Schema_Info.csv -------------------------------------------------------------------------------- /inst/extdata/23_BEAtoUSEEIOtoNAICS_2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/23_BEAtoUSEEIOtoNAICS_2007.csv -------------------------------------------------------------------------------- /inst/extdata/23_BEAtoUSEEIOtoNAICS_2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/23_BEAtoUSEEIOtoNAICS_2012.csv -------------------------------------------------------------------------------- /inst/extdata/23_BEAtoUSEEIOtoNAICS_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/23_BEAtoUSEEIOtoNAICS_2017.csv -------------------------------------------------------------------------------- /inst/extdata/Crosswalk_CoAtoNAICS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/Crosswalk_CoAtoNAICS.csv -------------------------------------------------------------------------------- /inst/extdata/Crosswalk_FIPS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/Crosswalk_FIPS.csv -------------------------------------------------------------------------------- /inst/extdata/Crosswalk_USEEIO_FlowMapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/Crosswalk_USEEIO_FlowMapping.csv -------------------------------------------------------------------------------- /inst/extdata/F_BEAtoUSEEIOtoNAICS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/F_BEAtoUSEEIOtoNAICS.csv -------------------------------------------------------------------------------- /inst/extdata/G_BEAtoUSEEIOtoNAICS_2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/G_BEAtoUSEEIOtoNAICS_2007.csv -------------------------------------------------------------------------------- /inst/extdata/G_BEAtoUSEEIOtoNAICS_2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/G_BEAtoUSEEIOtoNAICS_2012.csv -------------------------------------------------------------------------------- /inst/extdata/G_BEAtoUSEEIOtoNAICS_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/G_BEAtoUSEEIOtoNAICS_2017.csv -------------------------------------------------------------------------------- /inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2007.csv -------------------------------------------------------------------------------- /inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2012.csv -------------------------------------------------------------------------------- /inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/HS&ORE_BEAtoUSEEIOtoNAICS_2017.csv -------------------------------------------------------------------------------- /inst/extdata/IOMB_Fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/IOMB_Fields.yml -------------------------------------------------------------------------------- /inst/extdata/USEEIO_API_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/USEEIO_API_fields.yml -------------------------------------------------------------------------------- /inst/extdata/USEEIO_Commodity_Meta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/USEEIO_Commodity_Meta.csv -------------------------------------------------------------------------------- /inst/extdata/USEEIO_LCIA_Factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/USEEIO_LCIA_Factors.csv -------------------------------------------------------------------------------- /inst/extdata/USEEIO_LCIA_Indicators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/USEEIO_LCIA_Indicators.csv -------------------------------------------------------------------------------- /inst/extdata/V_BEAtoUSEEIOtoNAICS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/V_BEAtoUSEEIOtoNAICS.csv -------------------------------------------------------------------------------- /inst/extdata/VisualizationEssentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/VisualizationEssentials.yml -------------------------------------------------------------------------------- /inst/extdata/modelspecs/GAEEIOv1.0-GHG-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/modelspecs/GAEEIOv1.0-GHG-19.yml -------------------------------------------------------------------------------- /inst/extdata/modelspecs/GAEEIOv1.3-pecan-22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/modelspecs/GAEEIOv1.3-pecan-22.yml -------------------------------------------------------------------------------- /inst/extdata/modelspecs/USEEIOv2.0.1-411.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/modelspecs/USEEIOv2.0.1-411.yml -------------------------------------------------------------------------------- /inst/extdata/modelspecs/USEEIOv2.3-GHG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/modelspecs/USEEIOv2.3-GHG.yml -------------------------------------------------------------------------------- /inst/extdata/modelspecs/USEEIOv2.3-s-GHG-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/extdata/modelspecs/USEEIOv2.3-s-GHG-19.yml -------------------------------------------------------------------------------- /inst/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/inst/img/logo.png -------------------------------------------------------------------------------- /man/DataSourceConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/DataSourceConfiguration.Rd -------------------------------------------------------------------------------- /man/DemandConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/DemandConfiguration.Rd -------------------------------------------------------------------------------- /man/DemandVectorFunctionRegistry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/DemandVectorFunctionRegistry.Rd -------------------------------------------------------------------------------- /man/Detail_CPI_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_CPI_IO.Rd -------------------------------------------------------------------------------- /man/Detail_CPI_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_CPI_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_CommodityCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_CommodityCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Detail_CommodityCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_CommodityCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Detail_FinalDemandCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_FinalDemandCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Detail_FinalDemandCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_FinalDemandCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Detail_GrossOutput_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_GrossOutput_IO.Rd -------------------------------------------------------------------------------- /man/Detail_GrossOutput_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_GrossOutput_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Import_2012_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Import_2012_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Import_2012_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Import_2012_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Import_2017_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Import_2017_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_IndustryCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_IndustryCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Detail_IndustryCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_IndustryCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Detail_Make_2012_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Make_2012_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Make_2012_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Make_2012_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Make_2012_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Make_2012_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Make_2017_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Make_2017_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Make_2017_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Make_2017_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Margins_2012_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Margins_2012_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Margins_2012_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Margins_2012_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Margins_2017_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Margins_2017_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Supply_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Supply_2012.Rd -------------------------------------------------------------------------------- /man/Detail_Supply_2012_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Supply_2012_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Supply_2017_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Supply_2017_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2012_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2012_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2012_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2012_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2012_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2012_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2012_PUR_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2012_PUR_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2012_PUR_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2012_PUR_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2017_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2017_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2017_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2017_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2017_PUR_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2017_PUR_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_2017_PUR_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_2017_PUR_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_SUT_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_SUT_2012.Rd -------------------------------------------------------------------------------- /man/Detail_Use_SUT_2012_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_SUT_2012_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_Use_SUT_2017_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_Use_SUT_2017_17sch.Rd -------------------------------------------------------------------------------- /man/Detail_ValueAddedCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_ValueAddedCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Detail_ValueAddedCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Detail_ValueAddedCodeName_2017.Rd -------------------------------------------------------------------------------- /man/IndicatorConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/IndicatorConfiguration.Rd -------------------------------------------------------------------------------- /man/MasterCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/MasterCrosswalk.Rd -------------------------------------------------------------------------------- /man/MasterCrosswalk2007.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/MasterCrosswalk2007.Rd -------------------------------------------------------------------------------- /man/MasterCrosswalk2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/MasterCrosswalk2012.Rd -------------------------------------------------------------------------------- /man/MasterCrosswalk2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/MasterCrosswalk2017.Rd -------------------------------------------------------------------------------- /man/ModelConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/ModelConfiguration.Rd -------------------------------------------------------------------------------- /man/RAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/RAS.Rd -------------------------------------------------------------------------------- /man/SatelliteTableConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/SatelliteTableConfiguration.Rd -------------------------------------------------------------------------------- /man/Sector_CPI_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_CPI_IO.Rd -------------------------------------------------------------------------------- /man/Sector_CPI_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_CPI_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Sector_CommodityCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_CommodityCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Sector_CommodityCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_CommodityCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Sector_FinalDemandCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_FinalDemandCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Sector_FinalDemandCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_FinalDemandCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Sector_GrossOutput_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_GrossOutput_IO.Rd -------------------------------------------------------------------------------- /man/Sector_GrossOutput_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_GrossOutput_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Sector_IndustryCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_IndustryCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Sector_IndustryCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_IndustryCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Sector_ValueAddedCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_ValueAddedCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Sector_ValueAddedCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_ValueAddedCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Sector_ValueAdded_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_ValueAdded_IO.Rd -------------------------------------------------------------------------------- /man/Sector_ValueAdded_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Sector_ValueAdded_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_CPI_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_CPI_IO.Rd -------------------------------------------------------------------------------- /man/Summary_CPI_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_CPI_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_CommodityCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_CommodityCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Summary_CommodityCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_CommodityCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Summary_FinalDemandCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_FinalDemandCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Summary_FinalDemandCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_FinalDemandCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Summary_GrossOutput_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_GrossOutput_IO.Rd -------------------------------------------------------------------------------- /man/Summary_GrossOutput_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_GrossOutput_IO_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2010_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2010_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2011_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2011_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2012_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2012_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2012_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2012_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2013_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2013_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2013_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2013_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2014_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2014_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2014_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2014_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2015_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2015_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2015_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2015_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2016_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2016_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2016_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2016_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2017_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2017_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2017_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2017_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2018_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2018_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2018_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2018_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2019_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2019_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2019_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2019_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2020_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2020_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2020_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2020_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2021_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2021_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2022_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2022_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Import_2023_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Import_2023_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_IndustryCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_IndustryCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Summary_IndustryCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_IndustryCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2010_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2010_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2010_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2010_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2011_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2011_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2011_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2011_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2012_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2012_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2012_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2012_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2012_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2012_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2012_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2012_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2013_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2013_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2013_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2013_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2013_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2013_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2013_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2013_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2014_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2014_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2014_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2014_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2014_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2014_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2014_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2014_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2015_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2015_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2015_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2015_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2015_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2015_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2015_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2015_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2016_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2016_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2016_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2016_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2016_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2016_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2016_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2016_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2017_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2017_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2017_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2017_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2017_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2017_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2017_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2017_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2018_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2018_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2018_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2018_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2018_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2018_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2018_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2018_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2019_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2019_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2019_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2019_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2019_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2019_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2019_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2019_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2020_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2020_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2020_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2020_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2020_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2020_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2020_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2020_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2021_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2021_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2021_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2021_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2021_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2021_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2021_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2021_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2022_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2022_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2022_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2022_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2023_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2023_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Make_2023_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Make_2023_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2010.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2010.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2011.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2011.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2012.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2012_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2012_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2013.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2013.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2013_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2013_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2014.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2014.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2014_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2014_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2015.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2015.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2015_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2015_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2016.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2016_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2016_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2017.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2017_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2017_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2018.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2018.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2018_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2018_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2019.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2019.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2019_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2019_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2020.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2020.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2020_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2020_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2021_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2021_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2022_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2022_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Supply_2023_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Supply_2023_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2010_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2010_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2010_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2010_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2011_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2011_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2011_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2011_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2012_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2012_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2012_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2012_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2012_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2012_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2012_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2012_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2012_PUR_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2012_PUR_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2013_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2013_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2013_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2013_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2013_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2013_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2013_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2013_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2014_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2014_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2014_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2014_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2014_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2014_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2014_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2014_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2015_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2015_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2015_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2015_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2015_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2015_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2015_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2015_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2016_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2016_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2016_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2016_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2016_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2016_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2016_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2016_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2017_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2017_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2017_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2017_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2017_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2017_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2017_PRO_BeforeRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2017_PRO_BeforeRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2018_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2018_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2018_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2018_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2018_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2018_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2019_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2019_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2019_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2019_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2019_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2019_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2020_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2020_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2020_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2020_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2020_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2020_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2021_PRO_AfterRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2021_PRO_AfterRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2021_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2021_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2021_PRO_BeforeRedef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2021_PRO_BeforeRedef.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2022_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2022_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_2023_PRO_AfterRedef_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_2023_PRO_AfterRedef_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2010.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2010.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2011.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2011.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2012.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2012_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2012_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2013.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2013.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2013_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2013_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2014.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2014.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2014_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2014_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2015.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2015.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2015_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2015_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2016.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2016_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2016_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2017.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2017_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2017_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2018.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2018.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2018_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2018_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2019.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2019.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2019_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2019_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2020.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2020.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2020_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2020_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2021_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2021_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2022_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2022_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_Use_SUT_2023_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_Use_SUT_2023_17sch.Rd -------------------------------------------------------------------------------- /man/Summary_ValueAddedCodeName_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_ValueAddedCodeName_2012.Rd -------------------------------------------------------------------------------- /man/Summary_ValueAddedCodeName_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_ValueAddedCodeName_2017.Rd -------------------------------------------------------------------------------- /man/Summary_ValueAdded_IO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_ValueAdded_IO.Rd -------------------------------------------------------------------------------- /man/Summary_ValueAdded_IO_17sch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/Summary_ValueAdded_IO_17sch.Rd -------------------------------------------------------------------------------- /man/addSectorsToWIOCW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/addSectorsToWIOCW.Rd -------------------------------------------------------------------------------- /man/adjustITAwithWIOSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustITAwithWIOSectors.Rd -------------------------------------------------------------------------------- /man/adjustMarginswithWIOSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustMarginswithWIOSectors.Rd -------------------------------------------------------------------------------- /man/adjustMultiYearObjectsForMUIO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustMultiYearObjectsForMUIO.Rd -------------------------------------------------------------------------------- /man/adjustMultiYearObjectsForWIO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustMultiYearObjectsForWIO.Rd -------------------------------------------------------------------------------- /man/adjustMultiplierPriceType.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustMultiplierPriceType.Rd -------------------------------------------------------------------------------- /man/adjustMultiplierPriceYear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustMultiplierPriceYear.Rd -------------------------------------------------------------------------------- /man/adjustOutputbyCPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustOutputbyCPI.Rd -------------------------------------------------------------------------------- /man/adjustResultMatrixPrice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/adjustResultMatrixPrice.Rd -------------------------------------------------------------------------------- /man/aggregateMakeTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateMakeTable.Rd -------------------------------------------------------------------------------- /man/aggregateMasterCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateMasterCrosswalk.Rd -------------------------------------------------------------------------------- /man/aggregateMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateMatrix.Rd -------------------------------------------------------------------------------- /man/aggregateModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateModel.Rd -------------------------------------------------------------------------------- /man/aggregateMultiYearCPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateMultiYearCPI.Rd -------------------------------------------------------------------------------- /man/aggregateMultiYearOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateMultiYearOutput.Rd -------------------------------------------------------------------------------- /man/aggregateResultMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateResultMatrix.Rd -------------------------------------------------------------------------------- /man/aggregateResultMatrixbyRow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateResultMatrixbyRow.Rd -------------------------------------------------------------------------------- /man/aggregateSatelliteTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateSatelliteTable.Rd -------------------------------------------------------------------------------- /man/aggregateSector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateSector.Rd -------------------------------------------------------------------------------- /man/aggregateSectorsinTBS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateSectorsinTBS.Rd -------------------------------------------------------------------------------- /man/aggregateUseTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateUseTable.Rd -------------------------------------------------------------------------------- /man/aggregateVA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/aggregateVA.Rd -------------------------------------------------------------------------------- /man/applyAllocation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/applyAllocation.Rd -------------------------------------------------------------------------------- /man/applyRAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/applyRAS.Rd -------------------------------------------------------------------------------- /man/assembleTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/assembleTable.Rd -------------------------------------------------------------------------------- /man/assembleWIOModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/assembleWIOModel.Rd -------------------------------------------------------------------------------- /man/balanceDisagg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/balanceDisagg.Rd -------------------------------------------------------------------------------- /man/barplotFloworImpactFractionbyRegion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/barplotFloworImpactFractionbyRegion.Rd -------------------------------------------------------------------------------- /man/barplotIndicatorScoresbySector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/barplotIndicatorScoresbySector.Rd -------------------------------------------------------------------------------- /man/buildDisaggFullUse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildDisaggFullUse.Rd -------------------------------------------------------------------------------- /man/buildEconomicMatrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildEconomicMatrices.Rd -------------------------------------------------------------------------------- /man/buildIOModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildIOModel.Rd -------------------------------------------------------------------------------- /man/buildModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildModel.Rd -------------------------------------------------------------------------------- /man/buildModelwithImportFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildModelwithImportFactors.Rd -------------------------------------------------------------------------------- /man/buildPriceMatrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildPriceMatrices.Rd -------------------------------------------------------------------------------- /man/buildTwoRegionModels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/buildTwoRegionModels.Rd -------------------------------------------------------------------------------- /man/calculateBalancedDomesticTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateBalancedDomesticTables.Rd -------------------------------------------------------------------------------- /man/calculateBasicbyProducerPriceRatio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateBasicbyProducerPriceRatio.Rd -------------------------------------------------------------------------------- /man/calculateDefaultIntersection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateDefaultIntersection.Rd -------------------------------------------------------------------------------- /man/calculateDirectPerspectiveLCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateDirectPerspectiveLCI.Rd -------------------------------------------------------------------------------- /man/calculateDirectPerspectiveLCIA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateDirectPerspectiveLCIA.Rd -------------------------------------------------------------------------------- /man/calculateEEIOModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateEEIOModel.Rd -------------------------------------------------------------------------------- /man/calculateFinalPerspectiveLCI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateFinalPerspectiveLCI.Rd -------------------------------------------------------------------------------- /man/calculateFinalPerspectiveLCIA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateFinalPerspectiveLCIA.Rd -------------------------------------------------------------------------------- /man/calculateFlowContributiontoImpact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateFlowContributiontoImpact.Rd -------------------------------------------------------------------------------- /man/calculateGhoshB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateGhoshB.Rd -------------------------------------------------------------------------------- /man/calculateGhoshG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateGhoshG.Rd -------------------------------------------------------------------------------- /man/calculateHouseholdEmissions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateHouseholdEmissions.Rd -------------------------------------------------------------------------------- /man/calculateIndustryCommodityOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateIndustryCommodityOutput.Rd -------------------------------------------------------------------------------- /man/calculateLeontiefInverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateLeontiefInverse.Rd -------------------------------------------------------------------------------- /man/calculateMarginSectorImpacts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateMarginSectorImpacts.Rd -------------------------------------------------------------------------------- /man/calculateModelIOYearbyYearPriceRatio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateModelIOYearbyYearPriceRatio.Rd -------------------------------------------------------------------------------- /man/calculateMwithImportFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateMwithImportFactors.Rd -------------------------------------------------------------------------------- /man/calculateOutputRatio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateOutputRatio.Rd -------------------------------------------------------------------------------- /man/calculatePercentContributiontoImpact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculatePercentContributiontoImpact.Rd -------------------------------------------------------------------------------- /man/calculateResultsWithExternalFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateResultsWithExternalFactors.Rd -------------------------------------------------------------------------------- /man/calculateSectorContributiontoImpact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateSectorContributiontoImpact.Rd -------------------------------------------------------------------------------- /man/calculateStandardResults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateStandardResults.Rd -------------------------------------------------------------------------------- /man/calculateTotalImpactbyTier1Purchases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateTotalImpactbyTier1Purchases.Rd -------------------------------------------------------------------------------- /man/calculateWIOOutputs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/calculateWIOOutputs.Rd -------------------------------------------------------------------------------- /man/castImportFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/castImportFactors.Rd -------------------------------------------------------------------------------- /man/checkDuplicateFlowsBySector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/checkDuplicateFlowsBySector.Rd -------------------------------------------------------------------------------- /man/checkIndicatorforFlows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/checkIndicatorforFlows.Rd -------------------------------------------------------------------------------- /man/checkNamesandOrdering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/checkNamesandOrdering.Rd -------------------------------------------------------------------------------- /man/checkSatelliteFlowLoss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/checkSatelliteFlowLoss.Rd -------------------------------------------------------------------------------- /man/checkWIOBalance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/checkWIOBalance.Rd -------------------------------------------------------------------------------- /man/collapseTBS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/collapseTBS.Rd -------------------------------------------------------------------------------- /man/compare2RVectorTotals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compare2RVectorTotals.Rd -------------------------------------------------------------------------------- /man/compareEandLCIResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareEandLCIResult.Rd -------------------------------------------------------------------------------- /man/compareFlowTotals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareFlowTotals.Rd -------------------------------------------------------------------------------- /man/compareIndustryOutputinMakeandUse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareIndustryOutputinMakeandUse.Rd -------------------------------------------------------------------------------- /man/compareMatrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareMatrices.Rd -------------------------------------------------------------------------------- /man/compareOutputandLeontiefXDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareOutputandLeontiefXDemand.Rd -------------------------------------------------------------------------------- /man/compareOutputfromMakeandUse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/compareOutputfromMakeandUse.Rd -------------------------------------------------------------------------------- /man/conformTbStoIOSchema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/conformTbStoIOSchema.Rd -------------------------------------------------------------------------------- /man/conformTbStoStandardSatTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/conformTbStoStandardSatTable.Rd -------------------------------------------------------------------------------- /man/constructEEIOMatrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/constructEEIOMatrices.Rd -------------------------------------------------------------------------------- /man/convertSectorsToPhysical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/convertSectorsToPhysical.Rd -------------------------------------------------------------------------------- /man/convertStrEncodingLatintoASCII.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/convertStrEncodingLatintoASCII.Rd -------------------------------------------------------------------------------- /man/convertUsefromPURtoBAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/convertUsefromPURtoBAS.Rd -------------------------------------------------------------------------------- /man/createBfromFlowDataandOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/createBfromFlowDataandOutput.Rd -------------------------------------------------------------------------------- /man/createBlankIntersection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/createBlankIntersection.Rd -------------------------------------------------------------------------------- /man/createCfromFactorsandBflows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/createCfromFactorsandBflows.Rd -------------------------------------------------------------------------------- /man/createDemandID.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/createDemandID.Rd -------------------------------------------------------------------------------- /man/createDisaggFilesFromProxyData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/createDisaggFilesFromProxyData.Rd -------------------------------------------------------------------------------- /man/disaggregateCPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateCPI.Rd -------------------------------------------------------------------------------- /man/disaggregateCol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateCol.Rd -------------------------------------------------------------------------------- /man/disaggregateCols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateCols.Rd -------------------------------------------------------------------------------- /man/disaggregateFinalDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateFinalDemand.Rd -------------------------------------------------------------------------------- /man/disaggregateMakeTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateMakeTable.Rd -------------------------------------------------------------------------------- /man/disaggregateMargins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateMargins.Rd -------------------------------------------------------------------------------- /man/disaggregateMasterCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateMasterCrosswalk.Rd -------------------------------------------------------------------------------- /man/disaggregateModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateModel.Rd -------------------------------------------------------------------------------- /man/disaggregateMultiYearOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateMultiYearOutput.Rd -------------------------------------------------------------------------------- /man/disaggregateRow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateRow.Rd -------------------------------------------------------------------------------- /man/disaggregateRows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateRows.Rd -------------------------------------------------------------------------------- /man/disaggregateSatelliteSubsetByRatio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateSatelliteSubsetByRatio.Rd -------------------------------------------------------------------------------- /man/disaggregateSatelliteTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateSatelliteTable.Rd -------------------------------------------------------------------------------- /man/disaggregateSectorDFs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateSectorDFs.Rd -------------------------------------------------------------------------------- /man/disaggregateSetup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateSetup.Rd -------------------------------------------------------------------------------- /man/disaggregateTaxLessSubsidies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateTaxLessSubsidies.Rd -------------------------------------------------------------------------------- /man/disaggregateTotalToDirectAndTier1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateTotalToDirectAndTier1.Rd -------------------------------------------------------------------------------- /man/disaggregateUseTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateUseTable.Rd -------------------------------------------------------------------------------- /man/disaggregateVA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregateVA.Rd -------------------------------------------------------------------------------- /man/disaggregatedRatios.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/disaggregatedRatios.Rd -------------------------------------------------------------------------------- /man/downloadDataCommonsfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/downloadDataCommonsfile.Rd -------------------------------------------------------------------------------- /man/downloadNAICS2to6DigitsFile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/downloadNAICS2to6DigitsFile.Rd -------------------------------------------------------------------------------- /man/extractAndFormatDemandVector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/extractAndFormatDemandVector.Rd -------------------------------------------------------------------------------- /man/extractValidationResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/extractValidationResult.Rd -------------------------------------------------------------------------------- /man/findModelConfigurationFiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/findModelConfigurationFiles.Rd -------------------------------------------------------------------------------- /man/flowmapping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/flowmapping.Rd -------------------------------------------------------------------------------- /man/formatDemandVector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/formatDemandVector.Rd -------------------------------------------------------------------------------- /man/formatLocationforStateModels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/formatLocationforStateModels.Rd -------------------------------------------------------------------------------- /man/formatValidationResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/formatValidationResult.Rd -------------------------------------------------------------------------------- /man/generateCbSfromTbSandModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateCbSfromTbSandModel.Rd -------------------------------------------------------------------------------- /man/generateChiMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateChiMatrix.Rd -------------------------------------------------------------------------------- /man/generateCommodityMixMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateCommodityMixMatrix.Rd -------------------------------------------------------------------------------- /man/generateDirectRequirementsfromUse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateDirectRequirementsfromUse.Rd -------------------------------------------------------------------------------- /man/generateDomesticUse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateDomesticUse.Rd -------------------------------------------------------------------------------- /man/generateFlowtoDollarCoefficient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateFlowtoDollarCoefficient.Rd -------------------------------------------------------------------------------- /man/generateMarketSharesfromMake.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateMarketSharesfromMake.Rd -------------------------------------------------------------------------------- /man/generateModelIdentifier.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateModelIdentifier.Rd -------------------------------------------------------------------------------- /man/generateModelSectorSchema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateModelSectorSchema.Rd -------------------------------------------------------------------------------- /man/generateTaxLessSubsidiesTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateTaxLessSubsidiesTable.Rd -------------------------------------------------------------------------------- /man/generateTbSfromSatSpec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/generateTbSfromSatSpec.Rd -------------------------------------------------------------------------------- /man/getAggregationSpecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getAggregationSpecs.Rd -------------------------------------------------------------------------------- /man/getBEASectorColorMapping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getBEASectorColorMapping.Rd -------------------------------------------------------------------------------- /man/getCombinedImpactMethods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getCombinedImpactMethods.Rd -------------------------------------------------------------------------------- /man/getConfiguration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getConfiguration.Rd -------------------------------------------------------------------------------- /man/getDQfields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getDQfields.Rd -------------------------------------------------------------------------------- /man/getDefaultAllocationPercentages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getDefaultAllocationPercentages.Rd -------------------------------------------------------------------------------- /man/getDisaggCommodityPercentages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getDisaggCommodityPercentages.Rd -------------------------------------------------------------------------------- /man/getDisaggIndustryPercentages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getDisaggIndustryPercentages.Rd -------------------------------------------------------------------------------- /man/getDisaggregationSpecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getDisaggregationSpecs.Rd -------------------------------------------------------------------------------- /man/getFlowbySector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getFlowbySector.Rd -------------------------------------------------------------------------------- /man/getFlowbySectorCollapsed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getFlowbySectorCollapsed.Rd -------------------------------------------------------------------------------- /man/getHybridizationFiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getHybridizationFiles.Rd -------------------------------------------------------------------------------- /man/getHybridizationSpecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getHybridizationSpecs.Rd -------------------------------------------------------------------------------- /man/getImpactMethod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getImpactMethod.Rd -------------------------------------------------------------------------------- /man/getIndex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getIndex.Rd -------------------------------------------------------------------------------- /man/getIndicatorColorMapping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getIndicatorColorMapping.Rd -------------------------------------------------------------------------------- /man/getInputFilePath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getInputFilePath.Rd -------------------------------------------------------------------------------- /man/getMUIOSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getMUIOSectors.Rd -------------------------------------------------------------------------------- /man/getMarginsTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getMarginsTable.Rd -------------------------------------------------------------------------------- /man/getModelCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getModelCrosswalk.Rd -------------------------------------------------------------------------------- /man/getNAICS2012to2007Concordances.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS2012to2007Concordances.Rd -------------------------------------------------------------------------------- /man/getNAICS2012to2017Concordances.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS2012to2017Concordances.Rd -------------------------------------------------------------------------------- /man/getNAICS2to6Digits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS2to6Digits.Rd -------------------------------------------------------------------------------- /man/getNAICS2to6DigitsCodeName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS2to6DigitsCodeName.Rd -------------------------------------------------------------------------------- /man/getNAICS7to10Digits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS7to10Digits.Rd -------------------------------------------------------------------------------- /man/getNAICS7to10DigitsCodeName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICS7to10DigitsCodeName.Rd -------------------------------------------------------------------------------- /man/getNAICSCodeName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICSCodeName.Rd -------------------------------------------------------------------------------- /man/getNAICSCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICSCrosswalk.Rd -------------------------------------------------------------------------------- /man/getNAICStoBEAAllocation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getNAICStoBEAAllocation.Rd -------------------------------------------------------------------------------- /man/getScalingVector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getScalingVector.Rd -------------------------------------------------------------------------------- /man/getSchemaCode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getSchemaCode.Rd -------------------------------------------------------------------------------- /man/getSectorLinkages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getSectorLinkages.Rd -------------------------------------------------------------------------------- /man/getStandardSatelliteTableFormat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getStandardSatelliteTableFormat.Rd -------------------------------------------------------------------------------- /man/getTwoRegionIOData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getTwoRegionIOData.Rd -------------------------------------------------------------------------------- /man/getValueAddedTotalsbySector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getValueAddedTotalsbySector.Rd -------------------------------------------------------------------------------- /man/getVectorOfCodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getVectorOfCodes.Rd -------------------------------------------------------------------------------- /man/getWIOFiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getWIOFiles.Rd -------------------------------------------------------------------------------- /man/getWIOSpecs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/getWIOSpecs.Rd -------------------------------------------------------------------------------- /man/groupandsumTbSbyFlowLoc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/groupandsumTbSbyFlowLoc.Rd -------------------------------------------------------------------------------- /man/heatmapSatelliteTableCoverage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/heatmapSatelliteTableCoverage.Rd -------------------------------------------------------------------------------- /man/heatmapSectorRanking.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/heatmapSectorRanking.Rd -------------------------------------------------------------------------------- /man/hybridizeAMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/hybridizeAMatrix.Rd -------------------------------------------------------------------------------- /man/hybridizeBMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/hybridizeBMatrix.Rd -------------------------------------------------------------------------------- /man/hybridizeModelObjects.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/hybridizeModelObjects.Rd -------------------------------------------------------------------------------- /man/includeFullUseWIO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/includeFullUseWIO.Rd -------------------------------------------------------------------------------- /man/includeMakeWIO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/includeMakeWIO.Rd -------------------------------------------------------------------------------- /man/includeWIOSectorDFs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/includeWIOSectorDFs.Rd -------------------------------------------------------------------------------- /man/initializeModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/initializeModel.Rd -------------------------------------------------------------------------------- /man/initializeWIOObjects.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/initializeWIOObjects.Rd -------------------------------------------------------------------------------- /man/isDemandVectorValid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/isDemandVectorValid.Rd -------------------------------------------------------------------------------- /man/joinStringswithSlashes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/joinStringswithSlashes.Rd -------------------------------------------------------------------------------- /man/loadBEAtables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadBEAtables.Rd -------------------------------------------------------------------------------- /man/loadChainPriceIndexTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadChainPriceIndexTable.Rd -------------------------------------------------------------------------------- /man/loadCommodityandIndustryOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadCommodityandIndustryOutput.Rd -------------------------------------------------------------------------------- /man/loadDataCommonsfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadDataCommonsfile.Rd -------------------------------------------------------------------------------- /man/loadDefaultDemandVectorMeta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadDefaultDemandVectorMeta.Rd -------------------------------------------------------------------------------- /man/loadDemandVectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadDemandVectors.Rd -------------------------------------------------------------------------------- /man/loadExternalImportFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadExternalImportFactors.Rd -------------------------------------------------------------------------------- /man/loadFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadFactors.Rd -------------------------------------------------------------------------------- /man/loadIOData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadIOData.Rd -------------------------------------------------------------------------------- /man/loadIOcodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadIOcodes.Rd -------------------------------------------------------------------------------- /man/loadIOmeta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadIOmeta.Rd -------------------------------------------------------------------------------- /man/loadImportMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadImportMatrix.Rd -------------------------------------------------------------------------------- /man/loadIndicators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadIndicators.Rd -------------------------------------------------------------------------------- /man/loadLCIAfactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadLCIAfactors.Rd -------------------------------------------------------------------------------- /man/loadNationalGrossOutputTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadNationalGrossOutputTable.Rd -------------------------------------------------------------------------------- /man/loadNationalIOData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadNationalIOData.Rd -------------------------------------------------------------------------------- /man/loadSatTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadSatTables.Rd -------------------------------------------------------------------------------- /man/loadTwoRegionStateIOtables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadTwoRegionStateIOtables.Rd -------------------------------------------------------------------------------- /man/loadandbuildIndicators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadandbuildIndicators.Rd -------------------------------------------------------------------------------- /man/loadandbuildSatelliteTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/loadandbuildSatelliteTables.Rd -------------------------------------------------------------------------------- /man/lookupDQBoundScore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/lookupDQBoundScore.Rd -------------------------------------------------------------------------------- /man/mapFIPS5toLocationNames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/mapFIPS5toLocationNames.Rd -------------------------------------------------------------------------------- /man/mapListbyName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/mapListbyName.Rd -------------------------------------------------------------------------------- /man/mapLocationCodestoNames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/mapLocationCodestoNames.Rd -------------------------------------------------------------------------------- /man/matrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/matrices.Rd -------------------------------------------------------------------------------- /man/normalizeIOTransactions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/normalizeIOTransactions.Rd -------------------------------------------------------------------------------- /man/normalizeResultMatrixByTotalImpacts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/normalizeResultMatrixByTotalImpacts.Rd -------------------------------------------------------------------------------- /man/plotMatrixCoefficient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/plotMatrixCoefficient.Rd -------------------------------------------------------------------------------- /man/prepare2RDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepare2RDemand.Rd -------------------------------------------------------------------------------- /man/prepareConsumptionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareConsumptionDemand.Rd -------------------------------------------------------------------------------- /man/prepareDemandVectorForImportResults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareDemandVectorForImportResults.Rd -------------------------------------------------------------------------------- /man/prepareDemandVectorForStandardResults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareDemandVectorForStandardResults.Rd -------------------------------------------------------------------------------- /man/prepareDomesticConsumptionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareDomesticConsumptionDemand.Rd -------------------------------------------------------------------------------- /man/prepareDomesticProductionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareDomesticProductionDemand.Rd -------------------------------------------------------------------------------- /man/prepareEfromtbs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareEfromtbs.Rd -------------------------------------------------------------------------------- /man/prepareFlowBySectorCollapsed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareFlowBySectorCollapsed.Rd -------------------------------------------------------------------------------- /man/prepareHouseholdDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareHouseholdDemand.Rd -------------------------------------------------------------------------------- /man/prepareImportConsumptionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareImportConsumptionDemand.Rd -------------------------------------------------------------------------------- /man/prepareImportProductionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareImportProductionDemand.Rd -------------------------------------------------------------------------------- /man/prepareLCIAmethodforIndicators.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareLCIAmethodforIndicators.Rd -------------------------------------------------------------------------------- /man/prepareModelSectorCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareModelSectorCrosswalk.Rd -------------------------------------------------------------------------------- /man/prepareProductionDemand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareProductionDemand.Rd -------------------------------------------------------------------------------- /man/prepareTwoRegionDisaggregation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareTwoRegionDisaggregation.Rd -------------------------------------------------------------------------------- /man/prepareWIODFfromFBS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareWIODFfromFBS.Rd -------------------------------------------------------------------------------- /man/prepareWriteDirs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/prepareWriteDirs.Rd -------------------------------------------------------------------------------- /man/print2RValidationResults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/print2RValidationResults.Rd -------------------------------------------------------------------------------- /man/printValidationResults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/printValidationResults.Rd -------------------------------------------------------------------------------- /man/processImportFactors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/processImportFactors.Rd -------------------------------------------------------------------------------- /man/readImportFactorTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/readImportFactorTable.Rd -------------------------------------------------------------------------------- /man/removeExtraSpaces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeExtraSpaces.Rd -------------------------------------------------------------------------------- /man/removeHybridProcesses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeHybridProcesses.Rd -------------------------------------------------------------------------------- /man/removeMissingSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeMissingSectors.Rd -------------------------------------------------------------------------------- /man/removeModelSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeModelSectors.Rd -------------------------------------------------------------------------------- /man/removeNumberinSlashes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeNumberinSlashes.Rd -------------------------------------------------------------------------------- /man/removeRowsFromList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeRowsFromList.Rd -------------------------------------------------------------------------------- /man/removeSectorsFromWIOCW.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/removeSectorsFromWIOCW.Rd -------------------------------------------------------------------------------- /man/reorderModelSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/reorderModelSectors.Rd -------------------------------------------------------------------------------- /man/reorderPhysicalSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/reorderPhysicalSectors.Rd -------------------------------------------------------------------------------- /man/reorderWIOSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/reorderWIOSectors.Rd -------------------------------------------------------------------------------- /man/replaceNonewithNA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/replaceNonewithNA.Rd -------------------------------------------------------------------------------- /man/scoreContextualDQ.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/scoreContextualDQ.Rd -------------------------------------------------------------------------------- /man/scoreTemporalDQ.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/scoreTemporalDQ.Rd -------------------------------------------------------------------------------- /man/seeAvailableModels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/seeAvailableModels.Rd -------------------------------------------------------------------------------- /man/setCommonYearforFlow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/setCommonYearforFlow.Rd -------------------------------------------------------------------------------- /man/setDQScoringBounds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/setDQScoringBounds.Rd -------------------------------------------------------------------------------- /man/setToleranceforRAS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/setToleranceforRAS.Rd -------------------------------------------------------------------------------- /man/setWriteDirs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/setWriteDirs.Rd -------------------------------------------------------------------------------- /man/specifiedMakeDisagg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/specifiedMakeDisagg.Rd -------------------------------------------------------------------------------- /man/specifiedUseDisagg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/specifiedUseDisagg.Rd -------------------------------------------------------------------------------- /man/stackSatelliteTables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/stackSatelliteTables.Rd -------------------------------------------------------------------------------- /man/standardizeandcastSatelliteTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/standardizeandcastSatelliteTable.Rd -------------------------------------------------------------------------------- /man/startLogging.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/startLogging.Rd -------------------------------------------------------------------------------- /man/subsetWIOSectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/subsetWIOSectors.Rd -------------------------------------------------------------------------------- /man/sumDemandCols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/sumDemandCols.Rd -------------------------------------------------------------------------------- /man/sumforConsumption.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/sumforConsumption.Rd -------------------------------------------------------------------------------- /man/testCalculationFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/testCalculationFunctions.Rd -------------------------------------------------------------------------------- /man/testVisualizationFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/testVisualizationFunctions.Rd -------------------------------------------------------------------------------- /man/transformBEASectorToDFInput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/transformBEASectorToDFInput.Rd -------------------------------------------------------------------------------- /man/transformFinalDemandwithMarketShares.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/transformFinalDemandwithMarketShares.Rd -------------------------------------------------------------------------------- /man/uniformDisagg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/uniformDisagg.Rd -------------------------------------------------------------------------------- /man/validate2RCommodityTotals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/validate2RCommodityTotals.Rd -------------------------------------------------------------------------------- /man/validateHouseholdEmissions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/validateHouseholdEmissions.Rd -------------------------------------------------------------------------------- /man/validateImportFactorsApproach.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/validateImportFactorsApproach.Rd -------------------------------------------------------------------------------- /man/validateResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/validateResult.Rd -------------------------------------------------------------------------------- /man/writeDatatoRDA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeDatatoRDA.Rd -------------------------------------------------------------------------------- /man/writeMatrixasBinFile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeMatrixasBinFile.Rd -------------------------------------------------------------------------------- /man/writeMetadatatoJSON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeMetadatatoJSON.Rd -------------------------------------------------------------------------------- /man/writeModelDemandstoJSON.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeModelDemandstoJSON.Rd -------------------------------------------------------------------------------- /man/writeModelMatrices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeModelMatrices.Rd -------------------------------------------------------------------------------- /man/writeModelMetadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeModelMetadata.Rd -------------------------------------------------------------------------------- /man/writeModelforAPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeModelforAPI.Rd -------------------------------------------------------------------------------- /man/writeModeltoXLSX.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeModeltoXLSX.Rd -------------------------------------------------------------------------------- /man/writeSectorCrosswalk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeSectorCrosswalk.Rd -------------------------------------------------------------------------------- /man/writeSessionInfotoFile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/man/writeSessionInfotoFile.Rd -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/hybridizationspecs/NG_Combustion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/hybridizationspecs/NG_Combustion.yml -------------------------------------------------------------------------------- /tests/modelspecs/USEEIOv2.0-GHG-NGMUIO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/modelspecs/USEEIOv2.0-GHG-NGMUIO.yml -------------------------------------------------------------------------------- /tests/modelspecs/USEEIOv2.0-GHG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/modelspecs/USEEIOv2.0-GHG.yml -------------------------------------------------------------------------------- /tests/modelspecs/USEEIOv2.0-s-GHG-19.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/modelspecs/USEEIOv2.0-s-GHG-19.yml -------------------------------------------------------------------------------- /tests/modelspecs/USEEIOv2.2-GHG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/modelspecs/USEEIOv2.2-GHG.yml -------------------------------------------------------------------------------- /tests/muiospecs/NGMUIO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/muiospecs/NGMUIO.yml -------------------------------------------------------------------------------- /tests/muiospecs/NGMUIO_Sectors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/muiospecs/NGMUIO_Sectors.csv -------------------------------------------------------------------------------- /tests/test_model_build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/tests/test_model_build.R -------------------------------------------------------------------------------- /useeior.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USEPA/useeior/HEAD/useeior.Rproj --------------------------------------------------------------------------------