--- title: "Learning Networks" author: "Russell Almond" date: "April 4, 2019" output: pdf_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` # Learning CPTs Based on class slides prepared by Bob Mislevy. ## Launch RNetica (& PNetica) ```{r Netica Session, echo=TRUE} library(PNetica) ## Pulls in the others sess <- NeticaSession(LicenseKey="+AlmondR/Tutorial/Ex19-06-01,120,310/864") # Could add License Key as argument startSession(sess) ```