Description Usage Arguments Details Value Functions Examples
A set of convenience functions for managing the raw output of a
Blockbuster function call.
1 2 3 4 5 6 7 8 9  | pull_Element_Data(blockbuster_output, type = "")
pull_Block_Data(blockbuster_output)
load_Element_Data(forecast.horizon, path = "./output/",
  filelabel = "blockbuster_output", type = "")
load_Block_Data(forecast.horizon, path = "./output/",
  filelabel = "blockbuster_output")
 | 
blockbuster_output | 
 The output from a   | 
type | 
 character. Selects whether the output contains tidy data about
  | 
forecast.horizon | 
 integer. This specifies how many years of the saved output will be loaded.  | 
path | 
 character. This should be the same as the argument passed to the
  | 
filelabel | 
 character. This should be the same as the argument passed to
the   | 
The functions pull_Block_data and pull_Element_data take the
output from a Blockbuster call and combine the appropriate data
into a single dataframe with a column for year.
For large datasets (for example, the PDS dataset), R can hit memory limits
when the Blockbuster function tries to construct the single
output object from the saved interim files. load_Block_Data and
load_Element_Data loads only the relevant outputs from the saved
files.
These functions can also provide area and backlog summaries in tidy format
suitable for passing to ggplot2.
A data.frame containing the appropriate data from the output, with a
year column.  If type = "area" then the output will contain the grade
and component area in tidy format. If type = "backlog" then the
output will contain the grade and backlog in tidy format.
pull_Element_Data: Pulls out the element level data from the
output of a blockbuster function call
pull_Block_Data: Pulls out block data from the output from a
blockbuster function call
load_Element_Data: Loads the element-level output from a
blockbuster call
load_Block_Data: Loads the element-level output from a
blockbuster call
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  | ## Not run: 
# Collate the first ten years of output from an object output by
# Blockbuster
output <- Blockbuster(simulated_elements, forecast.horizon = 15)
pull_Block_Data(output, 10)
pull_Element_Data(output, 10)
## End(Not run)
# loading outputs from saved files
## Not run: 
Blockbuster(simulated_elements, path = "output", filelabel = "example")
load_Element_data(1, path = "output", filelabel = "example")
load_Block_data(1, path = "output", filelabel = "example")
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.