View source: R/nwos_estimates_summary.R View source: R/nwos_estimates_summary AWS.R
nwos_estimates_summary | R Documentation |
Combine and ummarize Imputations
Combine and ummarize Imputations
nwos_estimates_summary(
geo.abb,
stratum = "FFO",
domain = "TENPLUS",
wd = "DATA"
)
nwos_estimates_summary(
geo.abb,
stratum = "FFO",
domain = "TENPLUS",
wd = "DATA"
)
library(tidyverse)
library(parallel)
list.files("/home/ubuntu/GEO")
domain = "FFO"
stratum = "ONEPLUS"
# Need to run nwos_estimates_combine first
GEO_LIST <- read.csv("GEO_LIST.csv", stringsAsFactors = F)
geo.abb <- GEO_LIST$GEO_ABB
nwos_estimates_summary(geo.abb[1])
N_CORES <- detectCores() - 1
mclapply(geo.abb, nwos_estimates_summary, mc.cores = N_CORES)
domain = "FFO"
stratum = "ONEPLUS"
# Need to run nwos_estimates_combine first
geo.abb <- GEO_LIST$GEO_ABB
nwos_estimates_summary(geo.abb[55])
mclapply(geo.abb, nwos_estimates_summary, mc.cores = N_CORES)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.