From 172a3b71b1c5db6b3351b74eb670987bf512c711 Mon Sep 17 00:00:00 2001 From: Wesley Ingwersen Date: Mon, 1 Aug 2022 11:37:16 -0400 Subject: [PATCH] further update change from StateData to OneRegion data --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7dc0cd79..e97bacc0 100644 --- a/README.md +++ b/README.md @@ -34,15 +34,15 @@ Load desired StateIO data. See [One Region Data](format_specs/OneRegionData.md#d ```r ############## -# State Data # +# One-Region Data # ############## -# Load the state domestic Use tables for 2012 for all states. +# Load the state one-region (state only) domestic Use tables for 2012 for all states. # This will download the data product from a remote server and load it into your R session as an R list. -StateDomesticUse_2012 <- loadStateIODataFile("State_Summary_DomesticUse_2012") +OneRegionDomesticUse_2012 <- loadStateIODataFile("State_Summary_DomesticUse_2012") # Select the Georgia Use table. # This will put this table into a standard R data frame named 'GA_DomesticUse_2012'. -GA_DomesticUse_2012 <- StateDomesticUse_2012[["Georgia"]] +GA_DomesticUse_2012 <- OneRegionDomesticUse_2012[["Georgia"]] ################### # Two-Region Data #