l.represent.0: Logicopt truth table created from "represent.csv" dataset

Description Usage Format Source Examples

Description

l.represent.0 is an logicopt compatible truth table generated from the QCA dataset "represent.csv" where output "WNP" is 0.

Usage

1

Format

R data frame table

Source

compass.org website and various QCA packages

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Not run: 
# Read raw QCA dataset from csv file
inpath <- system.file("extdata/raw_qca/represent.csv", package="LogicOpt")
represent <- read.csv(inpath,row.names=1,na="")

# Need to load a QCA package that contains truthTable function: (pick one)
# library(QCAGUI) 
# library(QCApro)

# Create the QCA truth table 
q.represent.0 <- truthTable(represent, outcome = "WNP{0}")

# Create the logicopt truth table
l.represent.0 <- QCAtt2LOtt(q.represent.0)

## End(Not run)

# Load up truth table
data(l.represent.0)

# Optimize logicopt truth table  and print results
represent0 <- logicopt(l.represent.0,5,1,find_dc=TRUE,mode="multi-min")
print_multi_tt(represent0,eqn=TRUE,n_in=5,n_out=1,QCA=TRUE)

LogicOpt documentation built on May 30, 2017, 5:08 a.m.