| nm.process.scm | R Documentation | 
Read and process SCM output file such that the output can be directly copied into Microsoft products and LaTeX typesetting.
nm.process.scm(path, ...)
path | 
 full directory path where scmlog files reside  | 
... | 
 ignored  | 
data.frame
library(magrittr)
library(dplyr)
library(knitr)
library(yamlet)
path = file.path(getOption("qpExampleDir"),"scm_example2")
nm.process.scm(path)
nm.process.scm(path) %>% 
  filter(chosen == 1) %>%                      # summary
  select(step, model, direction, pvalue) %>%
  alias %>%                                    # labels as column names
  resolve %>%                                  # substitute guide values 
  kable
 # model:
 path %>% nm.process.scm %>% filter(chosen == 1) %>%
 select(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.